-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 1.13 KB
/
package.json
File metadata and controls
27 lines (27 loc) · 1.13 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
{
"name": "earthsdk3-code-workspace",
"version": "3.7.0",
"private": false,
"scripts": {
"ii": "pnpm install",
"dev-app1": "pnpm run start-debug-mode && pnpm --filter app1 dev",
"dev-app2": "pnpm run start-debug-mode && pnpm --filter app2 dev",
"build-app2": "pnpm --filter app2 build",
"build-earthsdk3": "pnpm run start-build-mode && pnpm --filter earthsdk3 build",
"build-earthsdk3-cesium": "pnpm run start-build-mode && pnpm --filter earthsdk3-cesium build",
"build-earthsdk3-ol": "pnpm run start-build-mode && pnpm --filter earthsdk3-ol build",
"build-earthsdk3-ue": "pnpm run start-build-mode && pnpm --filter earthsdk3-ue build",
"start-debug-mode": "node change-mode.js debug",
"start-build-mode": "node change-mode.js build",
"cleanall": "pnpm recursive exec -- rimraf node_modules",
"clean-root": "powershell -Command \"Remove-Item -Recurse -Force node_modules\"",
"doc:build": "node docs-build.js"
},
"devDependencies": {
"rimraf": "^5.0.10",
"pagefind": "^1.4.0",
"typedoc": "^0.28.4",
"typedoc-github-theme": "^0.3.0",
"conventional-changelog-cli": "^5.0.0"
}
}