-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
47 lines (47 loc) · 1.12 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
{
"name": "@geode/genepi",
"license": "MIT",
"version": "0.0.0-semantically-released",
"description": "Automatic generation of N-API wrapper from a C++ library",
"author": "Geode-solutions",
"keywords": [
"n-api",
"napi",
"wrapper",
"c++",
"addon",
"module",
"bindings",
"cmake"
],
"repository": {
"type": "git",
"url": "https://github.com/Geode-solutions/genepi.git"
},
"bugs": {
"url": "https://github.com/Geode-solutions/genepi/issues"
},
"homepage": "https://github.com/Geode-solutions/genepi#readme",
"scripts": {
"build": "cmake-js compile",
"build:debug": "cmake-js compile -D",
"install": "cmake-js compile",
"examples": "node ./examples/index.js"
},
"files": [
"/cmake",
"/include",
"/src",
"/CMakeLists.txt"
],
"publishConfig": {
"access": "public"
},
"dependencies": {
"cmake-js": "^6.1.0",
"node-addon-api": "^1.7.2"
},
"devDependencies": {
"bindings": "^1.5.0"
}
}