-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
46 lines (46 loc) · 1.07 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
{
"name": "tvm-disassembler",
"description": "Provides Fift-like code from smart contract source",
"version": "3.0.0",
"main": "dist/index.js",
"license": "MIT",
"author": "Dan Volkov <[email protected]>",
"repository": "https://github.com/ton-foundation/disassembler.git",
"scripts": {
"build": "rm -rf dist/ && tsc",
"release": "yarn build && release-it"
},
"files": [
"dist"
],
"devDependencies": {
"@release-it/keep-a-changelog": "^3.1.0",
"@ton/core": "^0.49.2",
"@ton/crypto": "^3.2.0",
"@ton/ton": "^13.5.1",
"@types/bn.js": "^5.1.0",
"@types/jest": "^27.4.0",
"jest": "^27.4.7",
"release-it": "^15.5.1",
"ton-compiler": "^1.0.0",
"ts-jest": "^27.1.3",
"tsc": "^2.0.3",
"typescript": "^4.5.5"
},
"peerDependencies": {
"@ton/core": ">=0.49.2"
},
"release-it": {
"git": {
"commitMessage": "chore: release v${version}"
},
"github": {
"release": true
},
"plugins": {
"@release-it/keep-a-changelog": {
"filename": "CHANGELOG.md"
}
}
}
}