-
Notifications
You must be signed in to change notification settings - Fork 53
/
Copy pathpackage.json
28 lines (28 loc) · 1.48 KB
/
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
{
"name": "dojo-packages",
"version": "1.0.0",
"workspaces": [
"examples/react-app",
"examples/react-phaser-example",
"packages/create-burner",
"packages/core",
"packages/utils",
"packages/torii-client",
"packages/torii-wasm",
"packages/react"
],
"devDependencies": {
"prettier": "^3.0.3"
},
"scripts": {
"build-core": "bun run --cwd packages/core build",
"build-create-burner": "bun run --cwd packages/create-burner build",
"build-utils": "bun run --cwd packages/utils build",
"build-torii-client": "bun run --cwd packages/torii-client build",
"build-torii-wasm": "bun run --cwd packages/torii-wasm build",
"build-react": "bun run --cwd packages/react build",
"build-phaser": "bun run --cwd examples/react-phaser-example build",
"build": "bun run build-core && bun run build-create-burner && bun run build-utils && bun run build-torii-client && bun run build-torii-wasm",
"clean": "rm -rf node_modules packages/create-burner/node_modules packages/core/node_modules packages/utils/node_modules packages/torii-client/node_modules packages/torii-wasm/node_modules packages/react/node_modules bun.lockb packages/create-burner/bun.lockb packages/core/bun.lockb packages/utils/bun.lockb packages/torii-client/bun.lockb packages/torii-wasm/bun.lockb packages/react/bun.lockb && rm -rf examples/react-app/node_modules examples/react-app/bun.lockb examples/react-phaser-example/node_modules examples/react-phaser-example/bun.lockb"
}
}