forked from visgl/loaders.gl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 2.22 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
{
"name": "loaders.gl",
"description": "Framework-independent loaders for visualization, 3D graphics and geospatial formats",
"license": "MIT",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/visgl/loaders.gl"
},
"keywords": [
"webgl",
"loader",
"3d",
"point cloud",
"GLB",
"OBJ",
"PLY",
"LAZ",
"PCD",
"KML"
],
"workspaces": [
"modules/*"
],
"scripts": {
"bootstrap": "yarn install-fast && ocular-bootstrap",
"install-fast": "PUPPETEER_SKIP_CHROMIUM_DOWNLOAD=true yarn",
"start": "echo 'Please see loaders.gl website for how to run examples' && open https://loaders.gl/docs",
"clean": "ocular-clean && npm run tsclean",
"build": "npm run clean && npm run tsbuild && ocular-build --dist es5,esm && lerna run pre-build",
"build-workers": "lerna run pre-build",
"tsclean": "find . -name tsconfig.tsbuildinfo -exec rm {} \\;",
"tsbuild": "tsc -b tsconfig.build.json && scripts/add-js-to-imports.sh",
"cover": "ocular-test cover",
"lint": "tsc && ocular-lint",
"bump": "ocular-bump",
"publish": "ocular-publish",
"test": "ocular-test",
"metrics": "./scripts/metrics.sh && ocular-metrics",
"version": "yarn build",
"pre-commit": "yarn lint",
"pre-push": "yarn lint"
},
"devDependencies": {
"@babel/plugin-transform-runtime": "^7.14.5",
"@probe.gl/bench": "^4.0.2",
"@probe.gl/test-utils": "^4.0.2",
"@types/tape-promise": "^4.0.1",
"base64-inline-loader": "^1.1.1",
"base64-loader": "^1.0.0",
"coveralls": "^3.0.3",
"esbuild": "^0.13.13",
"ocular-dev-tools": "1.0.0-alpha.7",
"pre-commit": "^1.2.2",
"pre-push": "^0.1.1",
"ts-node": "^10.4.0"
},
"pre-commit": "pre-commit",
"pre-push": "pre-push",
"dependencies": {},
"resolutions_notes": [
"Something triggers double luma.gl versions after deck.gl 8.9 upgrade",
"Note: tape 4.12 and higher no longer compares 0 and -0 equally...",
"Note: newer prettier breaks on typescript import type"
],
"resolutions": {
"@luma.gl/core": "8.5.20",
"tape": "4.11.0",
"prettier": "2.3.1",
"typescript": "^5.0.4"
},
"volta": {
"node": "16.19.1",
"yarn": "1.22.19"
}
}