-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 1016 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 1016 Bytes
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
{
"name": "wangsimiao2000.github.io",
"version": "1.0.0",
"private": true,
"description": "MickeyMiao's personal blog based on Jekyll Chirpy theme",
"author": "Wang Simiao",
"license": "MIT",
"homepage": "https://blog.mickeymiao.cn",
"scripts": {
"build": "BUILD=production npx rollup -c --bundleConfigAsCjs",
"watch": "npx rollup -c --bundleConfigAsCjs -w",
"dev": "npm run build && bash _scripts/run.sh",
"test": "bash _scripts/test.sh",
"clean": "rm -rf assets/js/dist _site .jekyll-cache .jekyll-metadata node_modules && echo '✅ 已清理所有构建产物'"
},
"devDependencies": {
"@babel/core": "^7.24.0",
"@babel/plugin-transform-class-properties": "^7.24.0",
"@babel/plugin-transform-private-methods": "^7.24.0",
"@babel/preset-env": "^7.24.0",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-terser": "^0.4.4",
"rollup": "^4.12.0"
},
"dependencies": {
"bootstrap": "^5.3.3"
}
}