-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 909 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 909 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
30
{
"name": "website",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "npm run generate && vite",
"generate": "node ./scripts/generate-content.mjs",
"build": "npm run generate && vite build",
"postbuild": "echo cooku.life > dist/CNAME",
"preview": "vite preview",
"deploy": "npm run build &&cd dist && rimraf .git && git init && git add -A && git commit -m \"deploy\" && git push -f git@github.com:cooku-life/cooku-life.github.io.git master:main"
},
"dependencies": {
"highlight.js": "^11.11.1",
"js-yaml": "^4.1.0",
"marked": "^15.0.11",
"marked-gfm-heading-id": "^4.1.1",
"vue": "^3.5.13",
"vue-router": "^4.5.1"
},
"devDependencies": {
"@vitejs/plugin-vue": "^5.2.2",
"fs-extra": "^11.2.0",
"glob": "^11.0.0",
"rimraf": "^6.0.1",
"vite": "^6.4.2",
"vite-plugin-static-copy": "^2.3.1"
}
}