-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathpackage.json
33 lines (33 loc) · 1.61 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
29
30
31
32
33
{
"name": "recast-navigation-root",
"private": true,
"workspaces": [
"packages/recast-navigation-wasm",
"packages/recast-navigation-core",
"packages/recast-navigation-generators",
"packages/recast-navigation-three",
"packages/recast-navigation-playcanvas",
"packages/recast-navigation",
"apps/*",
"examples/*"
],
"scripts": {
"build": "yarn build:packages && yarn build:apps",
"build:packages": "yarn workspaces foreach -t -A --include @recast-navigation/wasm --include @recast-navigation/core --include @recast-navigation/generators --include recast-navigation --include @recast-navigation/three --include @recast-navigation/playcanvas run build",
"build:apps": "yarn workspaces foreach -A -t --include navmesh-website --include docs run build",
"build:examples": "yarn workspaces foreach -A -t --include three-parcel-example --include three-vite-example --include three-vite-worker-example --include playcanvas-vite-example run build",
"test": "yarn test:packages && yarn test:node-smoke-test && yarn lint",
"test:packages": "(cd packages/recast-navigation && yarn test)",
"test:node-smoke-test": "(cd ./examples/three-node-cjs-example && yarn start) && (cd ./examples/three-node-esm-example && yarn start)",
"lint": "yarn workspaces foreach -A -t run lint",
"change": "yarn changeset",
"release": "yarn build && yarn test",
"publish": "changeset publish",
"version": "yarn changeset version && yarn install --mode update-lockfile"
},
"devDependencies": {
"@changesets/cli": "^2.26.2",
"vercel": "^33.7.0"
},
"packageManager": "[email protected]"
}