-
Notifications
You must be signed in to change notification settings - Fork 108
/
package.json
48 lines (48 loc) · 1.07 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
{
"name": "cozo-node",
"version": "0.7.6",
"description": "Cozo database for NodeJS",
"main": "index",
"types": "index.d.ts",
"files": [
"index.js",
"index.d.ts",
"LICENSE.txt"
],
"binary": {
"module_name": "cozo_node_prebuilt",
"host": "https://github.com/cozodb/cozo-lib-nodejs/releases/download/",
"remote_path": "{version}",
"package_name": "{napi_build_version}-{platform}-{arch}.tar.gz",
"module_path": "./native/{napi_build_version}",
"pkg_path": ".",
"napi_versions": [
6
]
},
"scripts": {
"install": "node-pre-gyp install",
"package": "node-pre-gyp package"
},
"author": "Ziyang Hu",
"license": "MIT",
"devDependencies": {
"cargo-cp-artifact": "^0.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cozodb/cozo-lib-nodejs.git"
},
"keywords": [
"database",
"datalog",
"graph"
],
"bugs": {
"url": "https://github.com/cozodb/cozo/issues"
},
"homepage": "https://www.cozodb.org",
"dependencies": {
"@mapbox/node-pre-gyp": "^1.0.10"
}
}