-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 3.23 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 3.23 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
{
"name": "@rapidsai/core",
"version": "22.12.2",
"description": "Shared CMake modules, TypeScript configurations, and C++ headers for RAPIDS node native modules",
"main": "index.js",
"types": "build/js",
"license": "Apache-2.0",
"author": "NVIDIA, Inc. (https://nvidia.com/)",
"maintainers": [
"Paul Taylor <paul.e.taylor@me.com>"
],
"homepage": "https://github.com/rapidsai/node/tree/main/modules/core#readme",
"bugs": {
"url": "https://github.com/rapidsai/node/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rapidsai/node.git"
},
"bin": {
"rapidsai-install-native-module": "bin/rapidsai_install_native_module.js",
"rapidsai-merge-compile-commands": "bin/rapidsai_merge_compile_commands.js"
},
"scripts": {
"clean": "rimraf build compile_commands.json",
"build": "yarn tsc:build && yarn cpp:build",
"build:debug": "yarn tsc:build && yarn cpp:build:debug",
"compile": "yarn tsc:build && yarn cpp:compile",
"compile:debug": "yarn tsc:build && yarn cpp:compile:debug",
"rebuild": "yarn tsc:build && yarn cpp:rebuild",
"rebuild:debug": "yarn tsc:build && yarn cpp:rebuild:debug",
"cpp:clean": "npx cmake-js clean -O build/Release",
"cpp:clean:debug": "npx cmake-js clean -O build/Debug",
"cpp:build": "npx cmake-js build -g -O build/Release",
"cpp:build:debug": "npx cmake-js build -g -D -O build/Debug",
"cpp:compile": "npx cmake-js compile -g -O build/Release",
"postcpp:compile": "npx rapidsai-merge-compile-commands",
"cpp:compile:debug": "npx cmake-js compile -g -D -O build/Debug",
"postcpp:compile:debug": "npx rapidsai-merge-compile-commands",
"cpp:configure": "npx cmake-js configure -g -O build/Release",
"postcpp:configure": "npx rapidsai-merge-compile-commands",
"cpp:configure:debug": "npx cmake-js configure -g -D -O build/Debug",
"postcpp:configure:debug": "npx rapidsai-merge-compile-commands",
"cpp:rebuild": "npx cmake-js rebuild -g -O build/Release",
"postcpp:rebuild": "npx rapidsai-merge-compile-commands",
"cpp:rebuild:debug": "npx cmake-js rebuild -g -D -O build/Debug",
"postcpp:rebuild:debug": "npx rapidsai-merge-compile-commands",
"cpp:reconfigure": "npx cmake-js reconfigure -g -O build/Release",
"postcpp:reconfigure": "npx rapidsai-merge-compile-commands",
"cpp:reconfigure:debug": "npx cmake-js reconfigure -g -D -O build/Debug",
"postcpp:reconfigure:debug": "npx rapidsai-merge-compile-commands",
"tsc:clean": "rimraf build/js",
"tsc:build": "yarn tsc:clean && tsc -p ./tsconfig.json",
"tsc:watch": "yarn tsc:clean && tsc -p ./tsconfig.json -w"
},
"dependencies": {
"@types/node": "^16.0.0",
"bindings": "^1.5.0",
"cmake-js": "7.2.1",
"cross-env": "7.0.3",
"getos": "3.2.1",
"tslib": "^2.3.0"
},
"devDependencies": {
"@types/flatbuffers": "2.0.1",
"@types/jest": "29.5.12",
"dotenv": "8.2.0",
"jest": "29.7.0",
"node-addon-api": "4.2.0",
"rimraf": "3.0.0",
"ts-jest": "29.2.5",
"typedoc": "0.22.10",
"typescript": "5.3.3"
},
"files": [
"LICENSE",
"bin",
"cmake",
"index.js",
"package.json",
"CMakeLists.txt",
"include/nv_node",
"build/js",
"build/Release/*.node"
]
}