forked from visgl/deck.gl-community
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.47 KB
/
Copy pathpackage.json
File metadata and controls
89 lines (89 loc) · 2.47 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "deck.gl-community",
"license": "MIT",
"private": true,
"keywords": [
"webgl",
"visualization"
],
"repository": {
"type": "git",
"url": ""
},
"type": "module",
"workspaces": [
"modules/*",
"dev/*",
"dev/timeline-layers/examples/*",
"examples/**"
],
"scripts": {
"bootstrap": "ocular-bootstrap",
"build": "ocular-clean && ocular-build && npx lerna run build",
"build-bundles": "node ./scripts/build-bundles.mjs",
"lint": "ocular-lint",
"lint-pre-commit": "ocular-lint pre-commit",
"lint-fix": "ocular-lint --fix",
"publish-beta": "ocular-publish version-only-beta",
"publish-prod": "ocular-publish version-only-prod",
"test": "yarn test-node",
"test-node": "vitest --project node",
"test-ci": "vitest run --project node --coverage",
"test-browser": "vitest --project browser",
"test-headless": "vitest run --project headless",
"metrics": "ocular-metrics",
"update-release-branch": "scripts/update-release-branch.sh"
},
"devDependencies": {
"@deck.gl/aggregation-layers": "~9.2.8",
"@deck.gl/core": "~9.2.8",
"@deck.gl/layers": "~9.2.8",
"@deck.gl/mesh-layers": "~9.2.8",
"@loaders.gl/core": "^4.2.0",
"@luma.gl/constants": "~9.2.6",
"@luma.gl/core": "~9.2.6",
"@luma.gl/engine": "~9.2.6",
"@luma.gl/shadertools": "~9.2.6",
"@luma.gl/webgl": "~9.2.6",
"@testing-library/react": "^14.3.0",
"@types/bin-pack": "^1.0.3",
"@vis.gl/dev-tools": "patch:@vis.gl/dev-tools@npm%3A1.0.1#~/.yarn/patches/@vis.gl-dev-tools-npm-1.0.1-f38d363810.patch",
"@vis.gl/ts-plugins": "^1.0.0",
"@vitejs/plugin-react": "^5.1.4",
"@vitest/browser": "^4.0.18",
"@vitest/browser-playwright": "^4.0.18",
"@vitest/coverage-v8": "^4.0.18",
"@vitest/eslint-plugin": "^1.6.9",
"bin-pack": "^1.0.2",
"datauri": "^4.1.0",
"ndarray": "^1.0.19",
"ndarray-pixels": "^3.1.0",
"playwright": "^1.56.1",
"pre-commit": "^1.2.2",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"typescript": "~5.9.3",
"vite": "^7.3.1",
"vitest": "^4.0.18",
"vitest-browser-react": "^2.0.5"
},
"packageExtensions": {
"deck.gl@*": {
"peerDependenciesMeta": {
"@arcgis/core": {
"optional": true
}
}
},
"zod-to-json-schema@*": {
"peerDependencies": {
"zod": "^4.0.0"
}
}
},
"pre-commit": [
"lint-pre-commit",
"test"
],
"packageManager": "yarn@4.10.3"
}