-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 2.14 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 2.14 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
{
"name": "root",
"private": true,
"workspaces": [
"examples/*",
"packages/*"
],
"scripts": {
"dev": "run-p dev:core dev:debug dev:r3f:library dev:r3f:example",
"vanilla": "run-p dev:core dev:debug dev:vanilla:library dev:vanilla:example",
"tres": "run-p dev:core dev:debug dev:tres:library dev:tres:example",
"threlte": "run-p dev:core dev:debug dev:threlte:library dev:threlte:example",
"dev:core": "bun run -F core-vfx dev",
"dev:debug": "bun run -F debug-vfx dev",
"dev:r3f:library": "bun run -F r3f-vfx dev",
"dev:r3f:example": "bun run -F r3f-example dev",
"dev:vanilla:library": "bun run -F vanilla-vfx dev",
"dev:vanilla:example": "bun run -F vanilla-example dev",
"dev:tres:library": "bun run -F tres-vfx dev",
"dev:tres:example": "bun run -F tres-example dev",
"dev:threlte:library": "bun run -F threlte-vfx dev",
"dev:threlte:example": "bun run -F threlte-example dev",
"build": "run-s build:core build:debug build:r3f:library build:vanilla:library build:tres:library build:threlte:library",
"build:core": "bun run -F core-vfx build",
"build:debug": "bun run -F debug-vfx build",
"build:r3f:library": "bun run -F r3f-vfx build",
"build:r3f:example": "bun run -F r3f-example build",
"build:vanilla:library": "bun run -F vanilla-vfx build",
"build:vanilla:example": "bun run -F vanilla-example build",
"build:tres:library": "bun run -F tres-vfx build",
"build:tres:example": "bun run -F tres-example build",
"build:threlte:library": "bun run -F threlte-vfx build",
"build:threlte:example": "bun run -F threlte-example build",
"start": "bun run -F r3f-example start",
"start:vanilla": "bun run -F vanilla-example start",
"format": "prettier . --write",
"typecheck": "bun run -F '*' typecheck",
"changeset:add": "changeset",
"changeset:version": "changeset version",
"pub": "bun run build && changeset publish"
},
"devDependencies": {
"@changesets/cli": "2.29.8",
"core-vfx": "workspace:*",
"makio-meshline": "^1.2.0",
"npm-run-all": "4.1.5",
"prettier": "3.8.1"
},
"overrides": {
"three": "0.182.0"
}
}