forked from rapidsai/node
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
150 lines (150 loc) · 7.25 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
{
"private": true,
"name": "node-rapids",
"version": "1.0.0",
"license": "Apache-2.0",
"author": "NVIDIA, Inc. (https://nvidia.com/)",
"maintainers": [
"Paul Taylor <[email protected]>"
],
"scripts": {
"build": "scripts/exec.js run build --concurrency 1",
"build:debug": "scripts/exec.js run build:debug --concurrency 1",
"clean": "scripts/exec.js clean",
"compile": "scripts/exec.js run compile --concurrency 1",
"compile:debug": "scripts/exec.js run compile:debug --concurrency 1",
"rebuild": "scripts/exec.js run rebuild --concurrency 1",
"rebuild:debug": "scripts/exec.js run rebuild:debug --concurrency 1",
"cpp:clean": "scripts/exec.js run cpp:clean --parallel",
"cpp:build": "scripts/exec.js run cpp:build --concurrency 1",
"cpp:build:debug": "scripts/exec.js run cpp:build:debug --concurrency 1",
"cpp:compile": "scripts/exec.js run cpp:compile --concurrency 1",
"cpp:compile:debug": "scripts/exec.js run cpp:compile:debug --concurrency 1",
"cpp:configure": "scripts/exec.js run cpp:configure --concurrency 1",
"cpp:configure:debug": "scripts/exec.js run cpp:configure:debug --concurrency 1",
"cpp:rebuild": "scripts/exec.js run cpp:rebuild --concurrency 1",
"cpp:rebuild:debug": "scripts/exec.js run cpp:rebuild:debug --concurrency 1",
"cpp:reconfigure": "scripts/exec.js run cpp:reconfigure --concurrency 1",
"cpp:reconfigure:debug": "scripts/exec.js run cpp:reconfigure:debug --concurrency 1",
"demo": "scripts/exec.js demo",
"dev:copy:libs": "scripts/exec.js run dev:copy:libs",
"dev:install-cpp-dependencies": "modules/core/bin/exec_install_deps.js",
"dev:npm:pack": "scripts/exec.js npm-pack",
"dev:relink-bin-dirs": "scripts/exec.js relink-bin-dirs",
"doc:packages": "scripts/exec.js run doc",
"doc": "rimraf doc && typedoc --options typedoc.js && yarn doc:packages",
"docker:build:devel": "yarn docker:build:devel:main && yarn docker:build:devel:notebook",
"docker:build:devel:main": "touch .env && npx cross-env DOCKER_BUILDKIT=1 DOCKER_SCAN_SUGGEST=false docker-compose -f docker-compose.devel.yml build --pull --force-rm main",
"docker:build:devel:packages": "touch .env && npx cross-env DOCKER_BUILDKIT=1 DOCKER_SCAN_SUGGEST=false docker-compose -f docker-compose.devel.yml build --force-rm packages",
"docker:build:devel:notebook": "touch .env && npx cross-env DOCKER_BUILDKIT=1 DOCKER_SCAN_SUGGEST=false docker-compose -f docker-compose.devel.yml build --force-rm notebook",
"docker:build:runtime": "yarn docker:build:runtime:base && yarn docker:build:devel:packages && yarn docker:build:runtime:libraries && yarn docker:build:runtime:notebook",
"docker:build:runtime:base": "touch .env && npx cross-env DOCKER_BUILDKIT=1 DOCKER_SCAN_SUGGEST=false docker-compose -f docker-compose.runtime.yml build --force-rm base",
"docker:build:runtime:libraries": "touch .env && npx cross-env DOCKER_BUILDKIT=1 DOCKER_SCAN_SUGGEST=false docker-compose -f docker-compose.runtime.yml build --force-rm --parallel main demo glfw cudf sql cuml cugraph cuspatial",
"docker:build:runtime:notebook": "touch .env && npx cross-env DOCKER_BUILDKIT=1 DOCKER_SCAN_SUGGEST=false docker-compose -f docker-compose.runtime.yml build --force-rm notebook",
"docker:run:devel:notebook": "touch .env && docker-compose -f docker-compose.devel.yml run --rm -u $(id -u):$(id -g) notebook",
"docker:run:devel": "touch .env && docker-compose -f docker-compose.devel.yml run --rm -u $(id -u):$(id -g) main",
"docker:run:runtime:cudf": "touch .env && docker-compose -f docker-compose.runtime.yml run --rm cudf",
"docker:run:runtime:cugraph": "touch .env && docker-compose -f docker-compose.runtime.yml run --rm cugraph",
"docker:run:runtime:cuml": "touch .env && docker-compose -f docker-compose.runtime.yml run --rm cuml",
"docker:run:runtime:cuspatial": "touch .env && docker-compose -f docker-compose.runtime.yml run --rm cuspatial",
"docker:run:runtime:demo": "touch .env && docker-compose -f docker-compose.runtime.yml run --rm demo",
"docker:run:runtime:glfw": "touch .env && docker-compose -f docker-compose.runtime.yml run --rm glfw",
"docker:run:runtime:io": "touch .env && docker-compose -f docker-compose.runtime.yml run --rm io",
"docker:run:runtime:main": "touch .env && docker-compose -f docker-compose.runtime.yml run --rm main",
"docker:run:runtime:notebook": "touch .env && docker-compose -f docker-compose.runtime.yml run --rm notebook",
"docker:run:runtime:sql": "touch .env && docker-compose -f docker-compose.runtime.yml run --rm sql",
"lint": "scripts/exec.js lint",
"nuke:from:orbit": "yarn cache clean && yarn clean && yarn && yarn rebuild",
"postinstall": "yarn dev:relink-bin-dirs",
"test": "scripts/exec.js test",
"tsc:build": "scripts/exec.js run tsc:build",
"tsc:watch": "scripts/exec.js run tsc:watch --parallel"
},
"workspaces": [
"modules/*",
"modules/demo/graph",
"modules/demo/luma",
"modules/demo/spatial",
"modules/demo/xterm",
"modules/demo/ipc/*",
"modules/demo/deck/*",
"modules/demo/umap",
"modules/demo/ssr/*",
"modules/demo/tfjs/*",
"modules/demo/client-server",
"modules/demo/api-server",
"modules/demo/viz-app",
"modules/demo/sql/*"
],
"dependencies": {
"@typescript-eslint/eslint-plugin": "5.10.0",
"@typescript-eslint/parser": "5.10.0",
"cmake-js": "6.0.0",
"cross-env": "7.0.3",
"dotenv": "8.2.0",
"eslint": "7.27.0",
"lerna": "3.22.1",
"lint-staged": "10.5.1",
"node-addon-api": "^3.1.0",
"pre-git": "3.17.1",
"rimraf": "3.0.0",
"shx": "0.3.3",
"typedoc": "0.22.10"
},
"config": {
"pre-git": {
"allow-untracked-files": true,
"pre-commit": [
"npx lint-staged --relative"
],
"pre-push": [],
"post-commit": [],
"post-checkout": [],
"post-merge": []
}
},
"lint-staged": {
"modules/**/@(src|test|include)/**/*.@(ts|h|cc?|cuh?|(c|h)pp)": [
"scripts/exec.js lint"
]
},
"resolutions": {
"**/@deck.gl/aggregation-layers": "8.6.6",
"**/@deck.gl/arcgis": "8.6.6",
"**/@deck.gl/carto": "8.6.6",
"**/@deck.gl/core": "8.6.6",
"**/@deck.gl/extensions": "8.6.6",
"**/@deck.gl/geo-layers": "8.6.6",
"**/@deck.gl/google-maps": "8.6.6",
"**/@deck.gl/json": "8.6.6",
"**/@deck.gl/layers": "8.6.6",
"**/@deck.gl/mesh-layers": "8.6.6",
"**/@deck.gl/react": "8.6.6",
"**/@loaders.gl/3d-tiles": "3.1.6",
"**/@loaders.gl/core": "3.1.6",
"**/@loaders.gl/csv": "3.1.6",
"**/@loaders.gl/draco": "3.1.6",
"**/@loaders.gl/gltf": "3.1.6",
"**/@loaders.gl/i3s": "3.1.6",
"**/@loaders.gl/images": "3.1.6",
"**/@loaders.gl/las": "3.1.6",
"**/@loaders.gl/obj": "3.1.6",
"**/@loaders.gl/ply": "3.1.6",
"**/@luma.gl/constants": "8.5.10",
"**/@luma.gl/core": "8.5.10",
"**/@luma.gl/engine": "8.5.10",
"**/@luma.gl/experimental": "8.5.10",
"**/@luma.gl/gltools": "8.5.10",
"**/@luma.gl/shadertools": "8.5.10",
"**/@luma.gl/webgl": "8.5.10",
"**/apache-arrow": "^8.0.0",
"**/gl-matrix": "3.3.0",
"**/jsdom": "16.6.0",
"**/math.gl": "3.5.7",
"**/mjolnir.js": "2.6.0",
"**/react-map-gl": "5.3.16"
},
"release": {
"analyzeCommits": "simple-commit-message"
}
}