-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
172 lines (172 loc) · 9.88 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
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
{
"private": true,
"name": "node-rapids",
"version": "22.12.2",
"license": "Apache-2.0",
"author": "NVIDIA, Inc. (https://nvidia.com/)",
"maintainers": [
"Paul Taylor <[email protected]>"
],
"homepage": "https://github.com/rapidsai/node#readme",
"bugs": {
"url": "https://github.com/rapidsai/node/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rapidsai/node.git"
},
"scripts": {
"build": "scripts/exec.js run build --concurrency 1",
"build:debug": "scripts/exec.js run build:debug --concurrency 1",
"clean": "scripts/exec.js clean",
"clean:build": "npx rimraf .cache/source .cache/binary && yarn tsc:clean && yarn cpp:clean && yarn build",
"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:clean:debug": "scripts/exec.js run cpp:clean:debug --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: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 .creds && 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 .creds && 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:libs && 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:libs": "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:main": "touch .env && npx cross-env DOCKER_BUILDKIT=1 DOCKER_SCAN_SUGGEST=false docker-compose -f docker-compose.runtime.yml build --force-rm main",
"docker:build:runtime:demo": "touch .env && npx cross-env DOCKER_BUILDKIT=1 DOCKER_SCAN_SUGGEST=false docker-compose -f docker-compose.runtime.yml build --force-rm demo",
"docker:build:runtime:glfw": "touch .env && npx cross-env DOCKER_BUILDKIT=1 DOCKER_SCAN_SUGGEST=false docker-compose -f docker-compose.runtime.yml build --force-rm glfw",
"docker:build:runtime:cudf": "touch .env && npx cross-env DOCKER_BUILDKIT=1 DOCKER_SCAN_SUGGEST=false docker-compose -f docker-compose.runtime.yml build --force-rm cudf",
"docker:build:runtime:sql": "touch .env && npx cross-env DOCKER_BUILDKIT=1 DOCKER_SCAN_SUGGEST=false docker-compose -f docker-compose.runtime.yml build --force-rm sql",
"docker:build:runtime:cuml": "touch .env && npx cross-env DOCKER_BUILDKIT=1 DOCKER_SCAN_SUGGEST=false docker-compose -f docker-compose.runtime.yml build --force-rm cuml",
"docker:build:runtime:cugraph": "touch .env && npx cross-env DOCKER_BUILDKIT=1 DOCKER_SCAN_SUGGEST=false docker-compose -f docker-compose.runtime.yml build --force-rm cugraph",
"docker:build:runtime:cuspatial": "touch .env && npx cross-env DOCKER_BUILDKIT=1 DOCKER_SCAN_SUGGEST=false docker-compose -f docker-compose.runtime.yml build --force-rm 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 && npx cross-env DOCKER_BUILDKIT=1 DOCKER_SCAN_SUGGEST=false docker-compose -f docker-compose.devel.yml run --rm -u $(id -u):$(id -g) notebook",
"docker:run:devel": "touch .env && npx cross-env DOCKER_BUILDKIT=1 DOCKER_SCAN_SUGGEST=false docker-compose -f docker-compose.devel.yml run --rm -u $(id -u):$(id -g) main",
"docker:run:runtime:cudf": "touch .env && npx cross-env DOCKER_BUILDKIT=1 DOCKER_SCAN_SUGGEST=false docker-compose -f docker-compose.runtime.yml run --rm cudf",
"docker:run:runtime:cugraph": "touch .env && npx cross-env DOCKER_BUILDKIT=1 DOCKER_SCAN_SUGGEST=false docker-compose -f docker-compose.runtime.yml run --rm cugraph",
"docker:run:runtime:cuml": "touch .env && npx cross-env DOCKER_BUILDKIT=1 DOCKER_SCAN_SUGGEST=false docker-compose -f docker-compose.runtime.yml run --rm cuml",
"docker:run:runtime:cuspatial": "touch .env && npx cross-env DOCKER_BUILDKIT=1 DOCKER_SCAN_SUGGEST=false docker-compose -f docker-compose.runtime.yml run --rm cuspatial",
"docker:run:runtime:demo": "touch .env && npx cross-env DOCKER_BUILDKIT=1 DOCKER_SCAN_SUGGEST=false docker-compose -f docker-compose.runtime.yml run --rm demo",
"docker:run:runtime:glfw": "touch .env && npx cross-env DOCKER_BUILDKIT=1 DOCKER_SCAN_SUGGEST=false docker-compose -f docker-compose.runtime.yml run --rm glfw",
"docker:run:runtime:io": "touch .env && npx cross-env DOCKER_BUILDKIT=1 DOCKER_SCAN_SUGGEST=false docker-compose -f docker-compose.runtime.yml run --rm io",
"docker:run:runtime:main": "touch .env && npx cross-env DOCKER_BUILDKIT=1 DOCKER_SCAN_SUGGEST=false docker-compose -f docker-compose.runtime.yml run --rm main",
"docker:run:runtime:notebook": "touch .env && npx cross-env DOCKER_BUILDKIT=1 DOCKER_SCAN_SUGGEST=false docker-compose -f docker-compose.runtime.yml run --rm notebook",
"docker:run:runtime:sql": "touch .env && npx cross-env DOCKER_BUILDKIT=1 DOCKER_SCAN_SUGGEST=false docker-compose -f docker-compose.runtime.yml run --rm sql",
"lint": "scripts/exec.js lint --fix",
"lint:ci": "scripts/exec.js lint",
"nuke:from:orbit": "yarn cache clean && yarn clean && yarn && yarn build",
"postinstall": "yarn dev:relink-bin-dirs",
"test": "scripts/exec.js test",
"tsc:build": "scripts/exec.js run tsc:build",
"tsc:clean": "scripts/exec.js run tsc:clean",
"tsc:watch": "scripts/exec.js run tsc:watch --parallel",
"postversion": "scripts/exec.js postversion"
},
"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.59.9",
"@typescript-eslint/parser": "5.59.9",
"bufferutil": "4.0.6",
"utf-8-validate": "5.0.9",
"cmake-js": "7.2.1",
"cross-env": "7.0.3",
"dotenv": "8.2.0",
"eslint": "8.42.0",
"lerna": "3.22.1",
"lint-staged": "10.5.1",
"pre-git": "3.17.1",
"rimraf": "3.0.0",
"typedoc": "0.22.10"
},
"config": {
"rapids_version": "22.12.00",
"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 --fix"
]
},
"resolutions": {
"**/@deck.gl/aggregation-layers": "8.8.10",
"**/@deck.gl/carto": "8.8.10",
"**/@deck.gl/core": "8.8.10",
"**/@deck.gl/extensions": "8.8.10",
"**/@deck.gl/geo-layers": "8.8.10",
"**/@deck.gl/google-maps": "8.8.10",
"**/@deck.gl/json": "8.8.10",
"**/@deck.gl/layers": "8.8.10",
"**/@deck.gl/mapbox": "8.8.10",
"**/@deck.gl/mesh-layers": "8.8.10",
"**/@deck.gl/react": "8.8.10",
"**/@loaders.gl/3d-tiles": "3.2.9",
"**/@loaders.gl/core": "3.2.9",
"**/@loaders.gl/csv": "3.2.9",
"**/@loaders.gl/draco": "3.2.9",
"**/@loaders.gl/gltf": "3.2.9",
"**/@loaders.gl/i3s": "3.2.9",
"**/@loaders.gl/images": "3.2.9",
"**/@loaders.gl/las": "3.2.9",
"**/@loaders.gl/obj": "3.2.9",
"**/@loaders.gl/ply": "3.2.9",
"**/@luma.gl/constants": "8.5.16",
"**/@luma.gl/core": "8.5.16",
"**/@luma.gl/engine": "8.5.16",
"**/@luma.gl/experimental": "8.5.16",
"**/@luma.gl/gltools": "8.5.16",
"**/@luma.gl/shadertools": "8.5.16",
"**/@luma.gl/webgl": "8.5.16",
"**/@math.gl/core": "3.6.3",
"**/apache-arrow": "^9.0.0",
"**/gl-matrix": "3.4.3",
"**/jsdom": "16.6.0",
"**/math.gl": "3.6.3",
"**/mjolnir.js": "2.7.1",
"**/maplibre-gl": "2.4.0"
},
"release": {
"analyzeCommits": "simple-commit-message"
}
}