-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.14 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.14 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
{
"name": "create-ton",
"version": "0.33.0",
"license": "MIT",
"description": "Tool to quickly create TON projects",
"author": "TonTech",
"repository": {
"type": "git",
"url": "git+https://github.com/ton-org/create-ton.git"
},
"files": [
"dist/**/*"
],
"bin": "./dist/cli.js",
"prettier": "@ton/toolchain/prettier",
"scripts": {
"lint": "eslint . --max-warnings 0",
"lint:fix": "eslint . --max-warnings 0 --fix",
"test": "jest src",
"build": "rm -rf dist && tsc && cp -r template dist/template"
},
"devDependencies": {
"@ton/toolchain": "the-ton-tech/toolchain#v1.4.0",
"@types/fs-extra": "^11.0.1",
"@types/inquirer": "^8.2.6",
"@types/jest": "^29.5.14",
"@types/node": "^20.2.5",
"eslint": "^9.28.0",
"jest": "^30.0.0",
"prettier": "^3.5.3",
"ts-jest": "^29.3.4",
"typescript": "^4.9.5"
},
"dependencies": {
"arg": "^5.0.2",
"chalk": "^4.1.0",
"fs-extra": "^11.1.1",
"inquirer": "^8.2.5"
},
"packageManager": "yarn@3.6.1"
}