-
Notifications
You must be signed in to change notification settings - Fork 211
/
package.json
67 lines (67 loc) · 1.77 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
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
61
62
63
64
65
66
67
{
"name": "luma.gl-monorepo",
"description": "WebGL2 Components for High Performance Rendering and Computation",
"license": "MIT",
"private": true,
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/visgl/luma.gl"
},
"keywords": [
"webgl",
"visualization",
"animation",
"3d"
],
"workspaces": [
"modules/*"
],
"browser": {
"fs": false
},
"scripts": {
"bootstrap": "yarn && ocular-bootstrap && yarn build",
"start": "open https://luma.gl/docs/getting-started",
"build": "ocular-clean && (cd modules/constants && yarn pre-build) && ocular-build",
"lint": "ocular-lint",
"publish-beta": "ocular-publish version-only-beta",
"publish-prod": "ocular-publish version-only-prod",
"test": "ocular-test",
"test-fast": "ocular-lint && ocular-test node",
"test-website": "cd website && yarn && yarn build && cd ..",
"metrics": "./scripts/metrics.sh && ocular-metrics"
},
"devDependencies": {
"@loaders.gl/core": "^4.2.0",
"@loaders.gl/gltf": "^4.2.0",
"@loaders.gl/polyfills": "^4.2.0",
"@probe.gl/bench": "^4.0.8",
"@probe.gl/stats": "^4.0.8",
"@probe.gl/stats-widget": "^4.0.8",
"@probe.gl/test-utils": "^4.0.8",
"@types/tape-promise": "^4.0.1 ",
"@vis.gl/dev-tools": "1.0.0-alpha.19",
"@vis.gl/ts-plugins": "1.0.0-alpha.19",
"eslint-plugin-tree-shaking": "^1.9.2",
"nyc": "^15.1.0",
"pre-commit": "^1.2.2",
"pre-push": "^0.1.1",
"puppeteer": "^22.0.0"
},
"resolutions": {
"typescript": "^5.5.0",
"tsconfig-paths": "^3.9.0",
"ts-patch": "^3.2.1"
},
"pre-commit": [
"test-fast"
],
"dependencies": {
"@types/offscreencanvas": "^2019.6.4"
},
"volta": {
"node": "20.17.0",
"yarn": "4.5.1"
}
}