-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 3.31 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 3.31 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
67
{
"name": "monogram",
"version": "0.1.0",
"type": "module",
"scripts": {
"gen": "node src/cli.ts typescript.ts && node src/cli.ts javascript.ts && node src/cli.ts typescriptreact.ts && node src/cli.ts javascriptreact.ts && node src/cli.ts html.ts && node src/cli.ts vue.ts && node src/cli.ts yaml.ts",
"test": "node test/check.ts",
"check": "node test/check.ts",
"gate:generative": "node test/generative.ts",
"gate:conformance-js": "node test/js-conformance.ts",
"gate:conformance-tsx": "node test/tsx-conformance.ts",
"gate:conformance-jsx": "node test/jsx-conformance.ts",
"gate:conformance-html": "node test/html-conformance.ts",
"gate:tm-diagnostics": "node test/redcmd-tm-diagnostics.ts",
"gate:tm-guards": "node test/tm-highlight-guards.ts",
"gate:yaml-issues": "node test/yaml-issue12-regressions.ts",
"gate:yaml-witnesses": "node test/yaml-depth-witnesses.ts",
"gate:left-recursion": "node test/left-recursion.ts",
"gate:html-lexer": "node test/html-lexer-spike.ts",
"gate:treesitter": "(cd tree-sitter/typescript && npx tree-sitter generate && npx tree-sitter build --wasm .) && node test/treesitter-bench.ts",
"metric:scope-gap:ts": "node test/scope-gap-run.ts ts",
"metric:scope-gap:js": "node test/scope-gap-run.ts js",
"metric:scope-gap:jsx": "node test/scope-gap-run.ts jsx",
"metric:scope-gap:tsx": "node test/scope-gap-run.ts tsx",
"metric:scope-gap:html": "node test/scope-gap-run.ts html",
"metric:scope-gap:yaml": "node test/scope-gap-run.ts yaml",
"metric:scope-gap:vue": "node test/scope-gap-run.ts vue",
"metric:src-coverage:ts": "node test/src-coverage-run.ts ts",
"metric:src-coverage:js": "node test/src-coverage-run.ts js",
"metric:src-coverage:jsx": "node test/src-coverage-run.ts jsx",
"metric:src-coverage:tsx": "node test/src-coverage-run.ts tsx",
"metric:src-coverage:html": "node test/src-coverage-run.ts html",
"metric:src-coverage:yaml": "node test/src-coverage-run.ts yaml",
"metric:scope-coverage": "node test/scope-coverage.ts",
"metric:conformance": "node test/run-conformance.ts",
"metric:compat": "node test/repo-compat.ts",
"coverage:table": "node test/coverage-table.ts --write",
"ledger": "node test/gap-ledger.ts --write",
"ledger:check": "node test/gap-ledger.ts --check",
"ledger:selftest": "node test/gap-ledger-selftest.ts",
"ledger:issues": "node test/gap-issues.ts",
"ledger:issues:dry": "node test/gap-issues.ts --dry-run",
"bench:perf": "node test/perf-bench.ts",
"bench:issues": "node test/issue-table.ts --write",
"bench:html-official": "node test/html-bench.ts",
"bench:vue-official": "node test/vue-bench.ts",
"bench:vue-issues": "node test/vue-issues.ts",
"bench:vue-dropin": "node test/vue-dropin.ts",
"bench:vue-generic-dropin": "node test/vue-generic-dropin.ts"
},
"devDependencies": {
"@types/node": "^25.9.1",
"@vscode/tree-sitter-wasm": "^0.3.1",
"@vue/compiler-dom": "^3.5.35",
"@vue/compiler-sfc": "^3.5.35",
"acorn": "^8.16.0",
"parse5": "^8.0.1",
"tree-sitter-cli": "^0.26.9",
"typescript": "^5.6.0",
"vscode-onigmo": "^2.0.1",
"vscode-oniguruma": "^2.0.1",
"vscode-textmate": "^9.3.2",
"vscode-tmlanguage-snapshot": "^1.0.1",
"web-tree-sitter": "^0.26.9",
"yaml": "^2.9.0"
}
}