-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.47 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.47 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": "forge",
"module": "index.ts",
"devDependencies": {
"@types/bun": "latest",
"@types/matter-js": "^0.19.8",
"docsify-cli": "^4.4.4"
},
"peerDependencies": {
"typescript": "^5.0.0"
},
"type": "module",
"scripts": {
"build:engine": "bun build ./engine/engine-core.ts --outfile ./engine/bundle.js",
"build:editor": "bun build ./engine/editor/editor.ts --outfile ./engine/editor.js",
"build:spriteEditor": "bun build ./engine/editor/spriteBuilder.ts --outfile ./engine/spriteEditor.js",
"build:all": "bun run build:engine && bun run build:editor && bun run build:spriteEditor",
"watch:engine": "bun build ./engine/engine-core.ts --outfile ./engine/bundle.js --watch",
"watch:editor": "bun build ./engine/editor/editor.ts --outfile ./engine/editor.js --watch",
"watch:spriteEditor": "bun build ./engine/editor/spriteBuilder.ts --outfile ./engine/spriteEditor.js --watch",
"watch:all": "bun run watch:engine & bun run watch:editor & bun run watch:spriteEditor",
"build:nominengine": "bun build ./engine/engine-core.ts --outfile ./engine/bundle.js --watch"
},
"dependencies": {
"@supabase/supabase-js": "^2.56.1",
"@types/google-one-tap": "^1.2.6",
"@types/node": "^24.1.0",
"@types/showdown": "^2.0.6",
"jszip": "^3.10.1",
"martinez-polygon-clipping": "^0.7.4",
"matter-js": "^0.20.0",
"polygon-clipping": "^0.15.7",
"rfdc": "^1.4.1",
"showdown": "^2.1.0",
"terser": "^5.43.1"
}
}