forked from AntelopeIO/abieos
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
36 lines (36 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
{
"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 --arch x64 compile --cc /usr/bin/clang --cxx /usr/bin/clang++ && cp build/Release/node_abieos.node dist/abieos.node",
"build:macos": "cmake-js --arch arm64 compile && cp build/Release/node_abieos.node dist/abieos.node",
"build:win": "cmake-js"
},
"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": "^7.0.0",
"cmake-js": "^7.2.1",
"@types/node": "^20.3.1",
"typescript": "^5.1.3"
},
"cmake-js": {
"runtime": "node",
"runtimeVersion": "20.0.0",
"arch": "x64"
}
}