-
Notifications
You must be signed in to change notification settings - Fork 109
/
package.json
111 lines (111 loc) · 3.23 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"name": "@tact-lang/compiler",
"version": "1.5.2",
"repository": {
"type": "git",
"url": "git+https://github.com/tact-lang/tact.git"
},
"homepage": "https://tact-lang.org",
"description": "Tact is a next-gen smart contract language for TON",
"author": "Steve Korshakov <[email protected]>",
"license": "MIT",
"scripts": {
"gen:grammar": "ohm generateBundles --withTypes src/grammar/*.ohm",
"gen:pack": "ts-node ./scripts/pack.ts",
"gen:compiler": "ts-node ./scripts/prepare.ts",
"gen": "yarn gen:grammar && yarn gen:pack && yarn gen:compiler",
"clean": "rm -fr dist",
"cleanall": "rm -fr dist node_modules",
"build": "tsc && node --no-warnings=ExperimentalWarning -r ts-node/register ./scripts/copy-files",
"test": "jest",
"coverage": "cross-env COVERAGE=true jest",
"release": "yarn clean && yarn build && yarn coverage && yarn release-it --npm.yarn1",
"lint": "yarn eslint .",
"lint:schema": "ajv validate -s schemas/configSchema.json -d tact.config.json",
"fmt": "yarn prettier -w .",
"fmt:check": "yarn prettier --check .",
"spell": "yarn cspell --no-progress \"**\"",
"knip": "knip",
"lint:all": "yarn lint && yarn fmt:check && yarn lint:schema && yarn spell && yarn knip",
"all": "yarn clean && yarn gen && yarn build && yarn coverage && yarn lint:all",
"postinstall": "node .husky/install.mjs || true",
"prepack": "pinst --disable",
"postpack": "pinst --enable"
},
"files": [
"dist/**/*",
"src/**/*",
"bin/**/*",
"stdlib/**/*",
"!**/test",
"!/docs"
],
"main": "./dist/main.js",
"bin": {
"tact": "bin/tact.js"
},
"dependencies": {
"@tact-lang/opcode": "^0.0.16",
"@ton/core": "0.59.0",
"@ton/crypto": "^3.2.0",
"blockstore-core": "1.0.5",
"change-case": "^4.1.2",
"crc-32": "1.2.2",
"ipfs-unixfs-importer": "9.0.10",
"json-bigint": "^1.0.0",
"meow": "^13.2.0",
"mkdirp": "^2.1.3",
"ohm-js": "^17.1.0",
"path-normalize": "^6.0.13",
"prando": "^6.0.1",
"zod": "^3.22.4"
},
"devDependencies": {
"@ohm-js/cli": "^2.0.0",
"@release-it/keep-a-changelog": "^5.0.0",
"@tact-lang/coverage": "^0.0.8",
"@tact-lang/ton-abi": "^0.0.3",
"@tact-lang/ton-jest": "^0.0.4",
"@ton/sandbox": "^0.22.0",
"@ton/test-utils": "^0.4.2",
"@types/glob": "^8.1.0",
"@types/jest": "^29.5.12",
"@types/json-bigint": "^1.0.4",
"@types/node": "^22.5.0",
"@typescript-eslint/eslint-plugin": "^7.0.2",
"@typescript-eslint/parser": "^7.0.2",
"ajv-cli": "^5.0.0",
"cross-env": "^7.0.3",
"cspell": "^8.8.3",
"eslint": "^8.56.0",
"glob": "^8.1.0",
"husky": "^9.1.5",
"jest": "^29.3.1",
"knip": "^5.24.1",
"pinst": "^3.0.0",
"prettier": "^3.2.5",
"release-it": "^17.6.0",
"rimraf": "^4.1.2",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"typescript": "~5.6.2"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"release-it": {
"github": {
"release": true
},
"plugins": {
"@release-it/keep-a-changelog": {
"filename": "CHANGELOG.md"
}
}
},
"packageManager": "[email protected]",
"engines": {
"node": ">=22.0.0"
}
}