-
-
Notifications
You must be signed in to change notification settings - Fork 93
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.47 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.47 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
{
"name": "@cursorless/lib-engine",
"version": "0.1.0",
"description": "The core Cursorless engine, which is responsible for parsing and executing commands, allocating hats, etc",
"license": "MIT",
"type": "module",
"exports": {
".": "./src/index.ts"
},
"scripts": {
"typecheck": "tsc",
"clean": "rm -rf ./out ./dist ./tsconfig.tsbuildinfo",
"test": "pnpm ensure-grammar-up-to-date",
"generate-grammar:base": "nearleyc src/customCommandGrammar/grammar.ne",
"ensure-grammar-up-to-date": "pnpm -s generate-grammar:base | diff -u src/customCommandGrammar/generated/grammar.ts -",
"generate-grammar": "pnpm generate-grammar:base -o src/customCommandGrammar/generated/grammar.ts",
"generate-railroad": "mkdir out && nearley-railroad src/customCommandGrammar/grammar.ne -o out/railroad.html"
},
"dependencies": {
"@cursorless/lib-common": "workspace:*",
"@cursorless/lib-node-common": "workspace:*",
"@cursorless/lib-sentence-parser": "workspace:*",
"@cursorless/talon-tools": "^0.9.0",
"immer": "^11.1.4",
"immutability-helper": "^3.1.1",
"itertools": "^2.6.0",
"lodash-es": "^4.17.23",
"moo": "^0.5.3",
"nearley": "^2.20.1",
"uuid": "^13.0.0",
"zod": "^4.3.6"
},
"devDependencies": {
"@types/js-yaml": "^4.0.9",
"@types/lodash-es": "^4.17.12",
"@types/mocha": "^10.0.10",
"@types/moo": "^0.5.10",
"@types/nearley": "^2.11.5",
"js-yaml": "^4.1.1",
"web-tree-sitter": "^0.26.7"
}
}