-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
53 lines (53 loc) · 1.19 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
{
"name": "ton-emulator",
"version": "2.1.1",
"main": "dist/index.js",
"repository": "https://github.com/ton-core/ton-emulator.git",
"author": "Steve Korshakov <[email protected]>",
"license": "MIT",
"files": [
"dist",
"src",
"wasm"
],
"scripts": {
"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",
"@types/jest": "^29.2.5",
"@types/node": "^18.11.18",
"jest": "^29.3.1",
"release-it": "^15.6.0",
"ton-core": ">=0.47.0",
"ton-crypto": "^3.2.0",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"typescript": "^4.9.4"
},
"peerDependencies": {
"ton-core": ">=0.47.0",
"ton-crypto": "^3.2.0"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"release-it": {
"github": {
"release": true
},
"plugins": {
"@release-it/keep-a-changelog": {
"filename": "CHANGELOG.md"
}
}
},
"dependencies": {
"prando": "^6.0.1",
"teslabot": "^1.5.0",
"zod": "^3.20.2"
}
}