-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
51 lines (51 loc) · 1.36 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
{
"name": "math.gl-monorepo",
"description": "Array-based 3D Math Classes optimized for WebGL applications",
"license": "MIT",
"private": true,
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/visgl/math.gl.git"
},
"workspaces": [
"modules/*",
"examples/*"
],
"scripts": {
"bootstrap": "yarn && ocular-bootstrap && npm run build",
"build": "ocular-clean && time ocular-build",
"cover": "ocular-test cover",
"lint": "ocular-lint",
"metrics": "ocular-metrics",
"publish-beta": "ocular-publish version-only-beta",
"publish-prod": "ocular-publish version-only-prod",
"test": "ocular-test",
"test-pre-commit": "ocular-lint && ocular-test node"
},
"devDependencies": {
"@probe.gl/bench": "^4.0.0",
"@turf/destination": "^6.0.1",
"@types/tape-promise": "^4.0.1",
"@vis.gl/dev-tools": "1.0.0-alpha.19",
"@vis.gl/ts-plugins": "1.0.0-alpha.19",
"pre-commit": "^1.2.2",
"puppeteer": "^22.0.0",
"tap-spec": "^5.0.0"
},
"resolutions_notes": {
"typescript": "Control the version of TypeScript to avoid breaking changes",
"tape": "New versions mess up numeric equality tests"
},
"resolutions": {
"typescript": "5.6.2",
"tape": "4.5.0"
},
"pre-commit": [
"test-pre-commit"
],
"volta": {
"node": "20.15.1",
"yarn": "4.6.0"
}
}