-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 2.03 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 2.03 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
53
54
55
56
57
58
59
60
{
"name": "viewerexamples",
"version": "1.0.0",
"description": "",
"source": "src/index.ts",
"main": "dist/main.js",
"types": "dist/types.d.ts",
"targets": {
"module": false,
"main": false,
"types": false
},
"scripts": {
"build": "sh ./scripts/build.sh",
"build-local": "PUBLIC_URL=/ sh ./scripts/build.sh",
"deploy-staging": "DEPLOY_ENV=staging npm run build && DEPLOY_ENV=staging ts-node ./scripts/deploy.ts",
"deploy-prod": "DEPLOY_ENV=prod npm run build && DEPLOY_ENV=prod ts-node ./scripts/deploy.ts",
"tsc-check": "tsc --noEmit",
"before-build": "ts-node ./scripts/beforeBuild.ts",
"after-build": "ts-node ./scripts/afterBuild.ts && npm run generate-llms-doc",
"parcel-build-prod-main": "parcel build index.html --public-url /",
"parcel-open": "parcel index.html --open --port 8080",
"generate-llms-doc": "ts-node ./scripts/generate-llms.ts && cp ./llms.txt ./dist/"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@shapediver/viewer": "3.16.5",
"@shapediver/viewer.features.attribute-visualization": "3.16.5",
"@shapediver/viewer.features.drawing-tools": "3.16.5",
"@shapediver/viewer.features.interaction": "3.16.5",
"@shapediver/viewer.features.transformation-tools": "3.16.5",
"@shapediver/viewer.shared.demo-helper": "3.16.5",
"@types/three": "0.162.0",
"postprocessing": "6.35.3",
"suncalc": "^1.9.0",
"three": "0.162.0"
},
"devDependencies": {
"@aws-sdk/client-s3": "^3.1024.0",
"@parcel/optimizer-htmlnano": "^2.16.1",
"@parcel/optimizer-terser": "^2.16.1",
"@parcel/transformer-typescript-tsc": "^2.16.1",
"@types/jsdom": "21.1.6",
"buffer": "6.0.3",
"codesandbox": "2.2.3",
"crypto-browserify": "3.12.1",
"events": "^3.3.0",
"jsdom": "^24.0.0",
"marked": "^12.0.2",
"parcel": "^2.16.1",
"process": "0.11.10",
"stream-browserify": "3.0.0",
"string_decoder": "1.3.0",
"ts-node": "10.9.2",
"typescript": "5.4.5",
"vm-browserify": "1.1.2"
}
}