-
Notifications
You must be signed in to change notification settings - Fork 38
/
package.json
36 lines (36 loc) · 983 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
33
34
35
36
{
"name": "@ton-community/func-js",
"version": "0.8.0",
"description": "The TON FunC smart-contract compiler",
"main": "dist/index.js",
"bin": {
"func-js": "./dist/cli.js"
},
"author": "TonTech",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/ton-community/func-js.git"
},
"files": [
"dist/**/*"
],
"scripts": {
"build": "rm -rf dist && tsc",
"test": "yarn jest",
"release": "yarn test && yarn build && yarn publish --access public"
},
"devDependencies": {
"@types/jest": "^29.5.0",
"jest": "^29.5.0",
"ton-core": "^0.49.0",
"ton-crypto": "^3.2.0",
"ts-jest": "^29.1.0",
"typescript": "^4.9.5"
},
"dependencies": {
"@ton-community/func-js-bin": "0.4.5",
"arg": "^5.0.2"
},
"packageManager": "[email protected]+sha1.4ba7fc5c6e704fce2066ecbfb0b0d8976fe62447"
}