This repository was archived by the owner on Jun 26, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.27 KB
/
Copy pathpackage.json
File metadata and controls
83 lines (83 loc) · 2.27 KB
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
{
"name": "@tact-lang/opcode",
"version": "0.3.2",
"repository": "https://github.com/tact-lang/ton-opcode.git",
"author": "Tact Authors",
"main": "dist/index.js",
"license": "MIT",
"description": "TVM BoC disassembler",
"scripts": {
"build": "tsc --declaration && yarn run copy:fift",
"copy:fift": "ts-node src/fift/copy.build.ts",
"fmt": "prettier --write -l --cache .",
"fmt:check": "prettier --check --cache .",
"lint": "eslint --cache .",
"gen-spec": "ts-node scripts/gen-codepage.ts",
"test": "vitest",
"coverage": "c8 vitest"
},
"devDependencies": {
"@scaleton/func-debug-symbols": "0.1.5",
"@ton-community/func-js": "~0.6.2",
"@ton-community/func-js-bin": "~0.4.4",
"@types/node": "^22.13.1",
"c8": "^10.1.3",
"eslint": "^9.19.0",
"eslint-plugin-unicorn": "^56.0.1",
"eslint-plugin-unused-imports": "^4.1.4",
"husky": "^9.1.7",
"json-schema-to-typescript": "^15.0.4",
"prettier": "3.4.2",
"ts-node": "^10.9.2",
"typescript": "^5.7.0",
"typescript-eslint": "^8.22.0",
"vitest": "^1.4.0"
},
"dependencies": {
"@ton/core": "^0.61.0",
"@ton/crypto": "^3.3.0",
"@ton/sandbox": "^0.32.2"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"release-it": {
"github": {
"release": true
},
"plugins": {
"@release-it/keep-a-changelog": {
"filename": "CHANGELOG.md"
}
}
},
"packageManager": "yarn@4.6.0",
"prettier": {
"arrowParens": "avoid",
"bracketSpacing": false,
"printWidth": 100,
"semi": false,
"singleQuote": false,
"tabWidth": 4,
"trailingComma": "all",
"useTabs": false,
"overrides": [
{
"files": [
"*.yaml",
"*.yml"
],
"options": {
"tabWidth": 2
}
}
]
},
"files": [
"dist",
"!dist/test",
"!dist/test/**/*",
"!**/fift/*.*"
]
}