-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.4 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.4 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "@ton-community/tlb-codegen",
"version": "2.0.0-beta.3",
"description": "TLB code generator",
"files": [
"./build/**/*",
"LICENSE",
"README.md"
],
"main": "./build/index.js",
"module": "./build/index.js",
"types": "./build/index.d.ts",
"exports": {
".": {
"types": "./build/index.d.ts",
"import": "./build/index.js",
"require": "./build/index.js",
"default": "./index.js"
}
},
"typesVersions": {
"*": {
"*": ["*"]
}
},
"bin": {
"tlb": "./build/cli.js"
},
"publishConfig": {
"access": "public"
},
"prettier": "@ton/toolchain/prettier",
"scripts": {
"lint": "eslint . --max-warnings 0",
"lint:fix": "eslint . --max-warnings 0 --fix",
"test:coverage": "jest --coverage",
"test": "jest",
"build": "npm run compile",
"prepublishOnly": "npm run build",
"compile": "tsc"
},
"keywords": [
"ton",
"tlb",
"tl-b",
"codegen",
"react-native",
"browser"
],
"author": "TON Tech",
"license": "MIT",
"devDependencies": {
"@jest/globals": "^29.7.0",
"@ton/toolchain": "github:the-ton-tech/toolchain#v1.4.0",
"@types/jest": "^30.0.0",
"jest": "^29.7.0",
"ts-jest": "^29.4.1",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
},
"dependencies": {
"@ton-community/tlb-parser": "^0.1.5",
"@ton/core": "^0.61.0",
"meow": "^9.0.0"
}
}