-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 966 Bytes
/
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
{
"name": "vite-typescript-starter",
"private": true,
"version": "0.0.0",
"type": "module",
"engines": {
"node": ">=16.0.0"
},
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"lint": "bunx gts lint",
"fix": "gts fix",
"clean": "gts clean",
"prepare": "bun run compile",
"pretest": "bun run compile",
"posttest": "bun run lint",
"dialogue": "bun src/twine/compile.js",
"strongly-type-json": "touch ./src/literal-types/open-world.json.d.ts && echo -E \"declare const schema: $(cat ./public/scenes/open-world.json); export default schema;\" > ./src/literal-types/open-world.json.d.ts"
},
"dependencies": {
"three": "0.155.0",
"three-pathfinding": "^1.2.0"
},
"devDependencies": {
"@types/graceful-fs": "^4.1.6",
"@types/node": "^20.4.5",
"@types/three": "^0.155.0",
"gts": "^5.0.0",
"typescript": "~5.1.6",
"vite": "^4.4.9"
}
}