forked from visgl/luma.gl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 2.24 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
68
69
70
71
72
73
74
75
76
77
78
{
"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": [
"examples/*/*",
"modules/*"
],
"browser": {
"fs": false
},
"scripts": {
"bootstrap": "yarn && ocular-bootstrap",
"postinstall": "echo postinstall",
"start": "open https://luma.gl/docs/getting-started",
"clean": "ocular-clean",
"build": "ocular-clean && (cd modules/constants && yarn pre-build) && ocular-build",
"cover": "ocular-test cover",
"lint": "ocular-lint",
"publish-beta": "ocular-publish version-only-beta",
"publish-prod": "ocular-publish version-only-prod",
"version": "node scripts/verify-changelog.js && git add CHANGELOG.md",
"test": "ocular-test",
"test-ci": "ocular-lint && ocular-test node && ocular-test cover && yarn test-website",
"test-fast": "ocular-test fast",
"test-browser": "ocular-test browser",
"test-browser-headless": "ocular-test browser-headless | tap-spec",
"test-website": "cd website && yarn && yarn build && cd ..",
"perf": "ocular-test perf-browser",
"bench": "ocular-test bench",
"bench-browser": "ocular-test bench-browser",
"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 ",
"eslint-plugin-tree-shaking": "^1.9.2",
"math.gl": "^3.0.0",
"nyc": "^15.1.0",
"ocular-dev-tools": "2.0.0-alpha.33",
"pre-commit": "^1.2.2",
"pre-push": "^0.1.1",
"puppeteer": "^22.0.0",
"tap-spec": "^5.0.0"
},
"resolutions": {
"typescript": "^5.3.0",
"tsconfig-paths": "^3.9.0"
},
"pre-commit": [
"test-fast"
],
"dependencies": {
"@types/offscreencanvas": "^2019.6.4"
},
"volta": {
"node": "20.11.1",
"yarn": "4.1.1"
}
}