forked from ton-core/ton-ledger-ts
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
51 lines (51 loc) · 1.22 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
{
"name": "@ton-community/ton-ledger",
"version": "7.0.1",
"repository": "https://github.com/ton-community/ton-ledger-ts",
"author": "Steve Korshakov <[email protected]>",
"license": "MIT",
"main": "dist/index.js",
"files": [
"dist"
],
"scripts": {
"build": "rm -fr dist && tsc --declaration",
"test": "jest",
"release": "yarn test && yarn build && yarn release-it --npm.yarn1",
"dev": "ts-node ./test/index.ts"
},
"peerDependencies": {
"@ton/core": ">=0.52.2"
},
"devDependencies": {
"@ledgerhq/hw-transport-node-hid": "^6.27.15",
"@release-it/keep-a-changelog": "^3.1.0",
"@ton/core": "^0.52.2",
"@types/jest": "^29.5.2",
"@types/node": "^20.2.5",
"jest": "^29.5.0",
"release-it": "^15.11.0",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
"typescript": "^4.9.5"
},
"dependencies": {
"@ledgerhq/hw-transport": "^6.28.4",
"@ton/crypto": "^3.2.0",
"teslabot": "^1.5.0"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"release-it": {
"github": {
"release": true
},
"plugins": {
"@release-it/keep-a-changelog": {
"filename": "CHANGELOG.md"
}
}
}
}