forked from EOSIO/abieos
-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.57 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.57 KB
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
56
57
{
"name": "@eosrio/node-abieos",
"version": "4.1.0-f7d5b45",
"publishConfig": {
"access": "public",
"tag": "latest"
},
"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)'",
"build:linux": "cmake-js compile && node scripts/copy-module.mjs",
"build": "tsup",
"test": "node --test test/**/*.test.js",
"test:coverage": "c8 --reporter=text --reporter=lcov node --test test/**/*.test.js",
"test:watch": "node --test --watch --experimental-test-coverage test/**/*.test.js",
"tsc:watch": "tsc --watch",
"clean": "cmake-js clean",
"build:win": "cmake-js",
"build:mac": "cmake-js",
"update_version": "node scripts/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.57.2",
"@types/node": "^25.3.0",
"@wharfkit/antelope": "^1.1.1",
"c8": "^10.1.3",
"cmake-js": "^8.0.0",
"node-addon-api": "^8.5.0",
"tsup": "^8.5.1",
"typescript": "^5.9.3"
},
"binary": {
"napi_versions": [
10
]
}
}