forked from ton-community/tlb-parser
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 959 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
37
38
39
40
41
42
43
{
"name": "tlb-parser",
"version": "0.1.0",
"description": "Parse TLB syntax into TypeScript objects",
"main": "index.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 <[email protected]>",
"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.0",
"@types/jest": "^29.5.4",
"@types/js-yaml": "^4.0.5",
"dedent": "^1.5.1",
"jest": "^29.6.4",
"js-yaml": "^4.1.0",
"ts-jest": "^29.1.1",
"typescript": "^5.2.2"
}
}