-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
56 lines (56 loc) · 1.47 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
{
"name": "@zondax/ledger-ironfish",
"author": "Zondax AG",
"license": "Apache-2.0",
"version": "0.0.0",
"description": "Node API for the Ironfish App (Ledger Nano S/X/S+)",
"main": "./dist/index.js",
"typings": "./dist/index.d.ts",
"types": "./dist/index.d.ts",
"homepage": "https://github.com/zondax/ledger-ironfish-js",
"repository": {
"type": "git",
"url": "git+https://github.com/zondax/ledger-ironfish-js.git"
},
"keywords": [
"Zondax",
"Ledger",
"Javascript",
"Ironfish"
],
"scripts": {
"build": "tsc",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"format": "prettier --write ."
},
"bugs": {
"url": "https://github.com/zondax/ledger-ironfish-js/issues"
},
"dependencies": {
"@zondax/ledger-js": "^1.2.0"
},
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/node": "^20.14.5",
"@typescript-eslint/eslint-plugin": "^7.13.1",
"@typescript-eslint/parser": "^7.13.1",
"eslint": "^9.5.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-standard-with-typescript": "^43.0.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-n": "^17.9.0",
"eslint-plugin-promise": "^6.2.0",
"eslint-plugin-tsdoc": "^0.3.0",
"eslint-plugin-unused-imports": "^4.0.0",
"prettier": "^3.3.2",
"sort-package-json": "^2.10.0",
"typescript": "^5.4.5"
},
"files": [
"dist/**/*"
],
"publishConfig": {
"access": "public"
}
}