forked from eosrio/node-abieos
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 1.02 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
{
"name": "@eosrio/node-abieos",
"version": "3.2.1",
"description": "Node Bindings for abieos: Binary <> JSON conversion using ABIs.",
"main": "./lib/abieos.js",
"typings": "./lib/abieos.d.ts",
"scripts": {
"install": "node -e 'process.exit(0)'",
"test": "cd examples && node basic.js",
"tsc:watch": "tsc --watch",
"build:linux": "cmake-js compile --cc /usr/bin/clang --cxx /usr/bin/clang++ && cp build/Release/node_abieos.node dist/abieos.node",
"build:win": "cmake-js"
},
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/eosrio/node-abieos.git"
},
"author": "EOS Rio",
"license": "MIT",
"bugs": {
"url": "https://github.com/eosrio/node-abieos/issues"
},
"homepage": "https://github.com/eosrio/node-abieos#readme",
"devDependencies": {
"node-addon-api": "^5.0.0",
"cmake-js": "^7.0.0",
"@types/node": "^18.11.13",
"typescript": "^4.9.4"
},
"cmake-js": {
"runtime": "node",
"runtimeVersion": "18.0.0",
"arch": "x64"
}
}