-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 2.04 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 2.04 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
{
"name": "vanity",
"version": "0.1.0",
"scripts": {
"bp": "blueprint",
"start": "blueprint run",
"build": "blueprint build",
"test": "jest --verbose",
"benchmark": "jest --runTestsByPath tests/Benchmark.spec.ts --verbose --testPathIgnorePatterns=/node_modules/ --testPathIgnorePatterns=/dist/",
"benchmark:add": "jest --runTestsByPath tests/Benchmark.spec.ts --verbose --testPathIgnorePatterns=/node_modules/ --testPathIgnorePatterns=/dist/ -- --add",
"benchmark:replace": "jest --runTestsByPath tests/Benchmark.spec.ts --verbose --testPathIgnorePatterns=/node_modules/ --testPathIgnorePatterns=/dist/ -- --replace",
"benchmark:print": "node tests/print-benchmark.js",
"format": "prettier --write \"**/*.{js,ts,tsx,json,md,yml,yaml}\" && uv run ruff format .",
"format:check": "prettier --check \"**/*.{js,ts,tsx,json,md,yml,yaml}\" && uv run ruff format --check .",
"lint": "uv run ruff check . && eslint .",
"check:kernel": "UV_CACHE_DIR=.uv-cache uv run python scripts/check_kernel.py",
"ci": "yarn format:check && yarn lint && yarn check:kernel && yarn test"
},
"dependencies": {
"@ton/core": "~0"
},
"devDependencies": {
"@tact-lang/compiler": ">=1.6.13 <2.0.0",
"@ton-community/func-js": ">=0.10.0",
"@ton/blueprint": ">=0.42.0",
"@ton/crypto": "^3.3.0",
"@ton/sandbox": ">=0.40.0",
"@ton/test-utils": ">=0.11.0",
"@ton/tolk-js": ">=1.0.0",
"@ton/ton": ">=15.3.1 <16.0.0",
"@types/jest": "^30.0.0",
"@types/node": "^22.17.2",
"@eslint/js": "^9.39.0",
"eslint": "^9.39.0",
"typescript-eslint": "^8.48.1",
"jest": "^30.0.5",
"prettier": "^3.6.2",
"ts-jest": "^29.4.1",
"ts-node": "^10.9.2",
"typescript": "^5.9.2"
},
"packageManager": "yarn@1.22.22+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
}