-
Notifications
You must be signed in to change notification settings - Fork 97
/
package.json
62 lines (62 loc) · 2.01 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
56
57
58
59
60
61
62
{
"name": "@iota/client",
"version": "3.0.0-rc.9",
"description": "Node.js binding to the client library",
"main": "out/lib/index.js",
"types": "out/lib/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/iotaledger/iota.rs"
},
"author": "IOTA Foundation <[email protected]>",
"license": "Apache-2.0",
"dependencies": {
"@iota/types": "2.0.0-rc.2",
"@types/node": "^18.6.4",
"cargo-cp-artifact": "^0.1.5",
"prebuild-install": "^7.1.1",
"typescript": "^4.8.3"
},
"scripts": {
"lint": "eslint --ignore-path .eslintignore --ext .js,.ts .",
"format": "prettier --ignore-path .eslintignore -w {,*/**/}*.{ts,js,json}",
"format-check": "prettier --ignore-path .eslintignore -c {,*/**/}*.{ts,js,json}",
"install": "prebuild-install --runtime napi --tag-prefix nodejs-binding-v && tsc || npm run rebuild",
"build": "npm run build:neon && tsc",
"build:neon": "cargo-cp-artifact -ac iota-client-nodejs ./index.node -- cargo build --release --message-format=json-render-diagnostics",
"rebuild": "npm run build:neon && tsc && node scripts/neon-build.js --strip && node scripts/strip.js",
"prebuild": "prebuild --runtime napi --target 6 --prepack scripts/neon-build.js --strip",
"test": "jest --forceExit"
},
"devDependencies": {
"@types/jest": "^27.5.2",
"@typescript-eslint/eslint-plugin": "^5.31.0",
"@typescript-eslint/parser": "^5.31.0",
"dotenv": "^16.0.1",
"electron-build-env": "^0.2.0",
"eslint": "^8.20.0",
"eslint-config-prettier": "^8.5.0",
"jest": "^27.5.1",
"jest-matcher-utils": "^28.1.3",
"prebuild": "^11.0.4",
"prettier": "^2.7.1",
"ts-jest": "^27.1.5",
"typedoc": "^0.23.14",
"typedoc-plugin-markdown": "^3.13.4"
},
"overrides": {
"tar@<=4.4.17": "^4.4.18",
"[email protected]": "^4.4.18",
"[email protected]": "^2.8.2"
},
"resolutions": {
"tar": "^4.4.19",
"simple-get": "^2.8.2",
"json5": "^2.2.2"
},
"binary": {
"napi_versions": [
6
]
}
}