forked from EOSIO/abieos
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
55 lines (55 loc) · 1.52 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
49
50
51
52
53
54
55
{
"name": "@eosrio/node-abieos",
"version": "3.3.4-a9d3362",
"description": "Node Bindings for abieos: Binary <> JSON conversion using ABIs.",
"main": "./dist/abieos.js",
"types": "./dist/abieos.d.ts",
"type": "module",
"exports": {
".": {
"types": "./dist/abieos.d.ts",
"import": "./dist/abieos.js",
"require": "./dist/abieos.cjs"
}
},
"scripts": {
"install": "node -e 'process.exit(0)'",
"test": "cd examples && node basic.mjs",
"tsc:watch": "tsc --watch",
"clean": "cmake-js clean",
"build": "tsup",
"build:linux": "cmake-js compile --cc /usr/bin/clang-18 --cxx /usr/bin/clang++-18 && cp build/Release/node_abieos.node lib/abieos.node",
"build:linux:ci": "cmake-js compile && cp build/Release/node_abieos.node lib/abieos.node",
"build:win": "cmake-js",
"update_version": "node update-version.mjs"
},
"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": {
"@microsoft/api-extractor": "7.47.11",
"@wharfkit/antelope": "^1.0.13",
"@types/node": "22.9.0",
"cmake-js": "7.3.0",
"node-addon-api": "8.2.2",
"tsup": "^8.3.5",
"typescript": "5.6.3"
},
"binary": {
"napi_versions": [
9
]
},
"cmake-js": {
"runtime": "node",
"runtimeVersion": "22.0.0",
"arch": "x64"
}
}