-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.08 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.08 KB
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
{
"name": "folded-paper-engine",
"version": "1.0.0",
"description": "Folded Paper Engine",
"scripts": {
"dev:web": "astro dev",
"build:web": "astro build && ts-node ./scripts/validateWebsiteCanonicals.ts",
"preview:web": "astro preview",
"setup-dist": "rm -rf ./dist && mkdir -p dist",
"copy-cname": "cp ./CNAME ./dist/website/CNAME && touch ./dist/website/.nojekyll",
"deploy-blender-addon": "ts-node ./scripts/blender-addon.ts",
"deploy-godot-addon": "ts-node ./scripts/godot-addon.ts"
},
"dependencies": {
"@astrojs/react": "^4.4.2",
"adm-zip": "^0.5.16",
"marked": "^15.0.7",
"react": "^19.2.1",
"react-dom": "^19.2.1"
},
"devDependencies": {
"@astrojs/sitemap": "^3.6.0",
"@types/adm-zip": "^0.5.7",
"@types/fs-extra": "^11.0.4",
"@types/node": "^24.5.2",
"@types/react": "^19.2.7",
"@types/react-dom": "^19.2.3",
"astro": "^5.16.3",
"fast-xml-parser": "^5.2.5",
"fs-extra": "^11.3.2",
"ts-node": "^10.9.2",
"typescript": "^5.9.2"
},
"private": true,
"main": "index.js",
"license": "MIT"
}