-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.04 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.04 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
{
"name": "chevrotain-allstar",
"version": "0.4.1",
"description": "LL(*) lookahead strategy for the Chevrotain parser library",
"keywords": [
"parser",
"lookahead",
"chevrotain",
"langium"
],
"license": "MIT",
"type": "module",
"types": "./lib/index.d.ts",
"exports": {
".": {
"types": "./lib/index.d.ts",
"default": "./lib/index.js"
}
},
"scripts": {
"test": "vitest",
"build": "tsc",
"watch": "tsc -w",
"clean": "shx rm -rf lib tsconfig.tsbuildinfo"
},
"files": [
"src",
"lib"
],
"dependencies": {
"lodash-es": "^4.18.1"
},
"peerDependencies": {
"chevrotain": "^12.0.0"
},
"devDependencies": {
"@types/lodash-es": "^4.17.12",
"shx": "^0.4.0",
"typescript": "^5.9.3",
"vitest": "^4.1.2"
},
"repository": {
"type": "git",
"url": "https://github.com/langium/chevrotain-allstar"
},
"bugs": "https://github.com/langium/chevrotain-allstar/issues",
"author": {
"name": "TypeFox",
"url": "https://www.typefox.io"
}
}