forked from ton-core/ton-core
-
Notifications
You must be signed in to change notification settings - Fork 26
/
package.json
52 lines (52 loc) · 1.21 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
{
"name": "@ton/core",
"version": "0.59.0",
"main": "dist/index.js",
"repository": "https://github.com/ton-org/ton-core.git",
"author": "Whales Corp. <[email protected]>",
"license": "MIT",
"files": [
"dist",
"src"
],
"scripts": {
"docs": "rm -fr docs && typedoc src/index.ts",
"build": "rm -fr dist && tsc --declaration",
"test": "jest --verbose --runInBand",
"release": "yarn build && yarn test && yarn release-it --npm.yarn1"
},
"devDependencies": {
"@release-it/keep-a-changelog": "^3.1.0",
"@ton/crypto": "^3.2.0",
"@types/jest": "^29.5.12",
"@types/node": "^20.11.30",
"jest": "^29.7.0",
"prando": "^6.0.1",
"release-it": "^15.5.1",
"ton3-core": "^0.0.20",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"typedoc": "^0.25.12",
"typescript": "^5.4.3"
},
"peerDependencies": {
"@ton/crypto": ">=3.2.0"
},
"dependencies": {
"symbol.inspect": "1.0.1"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"release-it": {
"github": {
"release": true
},
"plugins": {
"@release-it/keep-a-changelog": {
"filename": "CHANGELOG.md"
}
}
}
}