-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
47 lines (47 loc) · 1.42 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
{
"name": "blueprint-scaffold",
"version": "1.1.2",
"description": "Bluerpint Scaffold Plugin. Helps you to build a dapp from wrappers which you've wrote for your FunC contracts.",
"main": "dist/index.js",
"author": "1IxI1",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/1IxI1/blueprint-scaffold.git"
},
"scripts": {
"build": "rm -rf dist && tsc && cp -r src/dapp dist/",
"release": "yarn build && yarn publish --access public",
"format": "prettier --write src"
},
"devDependencies": {
"@ton/blueprint": "^0.15.0",
"@ton/core": "^0.53.0",
"@ton/crypto": "^3.2.0",
"@ton/ton": "^13.9.0",
"@types/babel__generator": "^7.6.8",
"@types/babel__traverse": "^7.20.4",
"@types/node": "^20.2.5",
"prettier": "^2.8.8",
"typescript": "^4.9.5"
},
"peerDependencies": {
"@ton/blueprint": ">=0.12.0",
"@ton/core": ">=0.49.2",
"@ton/crypto": ">=3.2.0",
"@ton/ton": ">=13.4.1"
},
"dependencies": {
"@babel/core": "^7.23.6",
"@babel/generator": "^7.23.6",
"@babel/parser": "^7.23.6",
"@babel/preset-typescript": "^7.23.3",
"@babel/traverse": "^7.23.6",
"@babel/types": "^7.23.6",
"arg": "^5.0.2"
},
"files": [
"dist/**/*"
],
"packageManager": "[email protected]"
}