-
Notifications
You must be signed in to change notification settings - Fork 87
/
package.json
48 lines (48 loc) · 1.02 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
{
"name": "juejin-markdown-themes",
"version": "1.0.0",
"main": "dist/index.js",
"types": "index.d.ts",
"repository": "[email protected]:xitu/juejin-markdown-themes.git",
"author": "Rongjian Zhang <[email protected]>",
"license": "MIT",
"files": [
"dist",
"index.d.ts"
],
"unpkg": true,
"scripts": {
"lint": "npx prettier -l *.js *.md",
"build": "rm -rf dist && node -r esm build.js",
"prepublishOnly": "npm run build"
},
"devDependencies": {
"@rollup/plugin-virtual": "^2.0.3",
"bytemd": "^1.2.0",
"cssnano": "^4.1.10",
"esm": "^3.2.25",
"fs-extra": "^9.0.1",
"less": "^3.12.2",
"lodash": "^4.17.20",
"node-fetch": "^2.6.1",
"postcss": "^8.2.2",
"rollup": "^2.36.1",
"sass": "^1.27.0"
},
"release": {
"branches": [
"+([0-9])?(.{+([0-9]),x}).x",
"main",
"next",
"next-major",
{
"name": "beta",
"prerelease": true
},
{
"name": "alpha",
"prerelease": true
}
]
}
}