-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
47 lines (47 loc) · 1.04 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": "@ton-community/tlb-parser",
"version": "0.1.3",
"description": "Parse TLB syntax into TypeScript objects",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"bin": {
"tlb-parser": "./dist/cli.js"
},
"scripts": {
"build": "tsc --project tsconfig.build.json",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ton-community/tlb-parser.git"
},
"keywords": [
"TL-B",
"TLB",
"tlb",
"TON",
"Telegram",
"AST",
"peg",
"grammar"
],
"author": "Nikita Sobolev <mail@sobolevn.me>",
"license": "MIT",
"bugs": {
"url": "https://github.com/ton-community/tlb-parser/issues"
},
"homepage": "https://github.com/ton-community/tlb-parser#readme",
"dependencies": {
"ohm-js": "^16.6.0"
},
"devDependencies": {
"@types/dedent": "^0.7.2",
"@types/jest": "^29.5.12",
"@types/js-yaml": "^4.0.9",
"dedent": "^1.5.1",
"jest": "^29.7.0",
"js-yaml": "^4.1.0",
"ts-jest": "^29.1.2",
"typescript": "^5.3.3"
}
}