forked from ton-org/create-ton
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
32 lines (32 loc) · 815 Bytes
/
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
{
"name": "create-ton",
"version": "0.15.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",
"scripts": {
"build": "rm -rf dist && tsc && cp -r template dist/template"
},
"devDependencies": {
"@types/fs-extra": "^11.0.1",
"@types/inquirer": "^8.2.6",
"@types/node": "^20.2.5",
"prettier": "^2.8.8",
"typescript": "^4.9.5"
},
"dependencies": {
"arg": "^5.0.2",
"chalk": "^4.1.0",
"fs-extra": "^11.1.1",
"inquirer": "^8.2.5"
},
"packageManager": "[email protected]"
}