-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.66 KB
/
Copy pathpackage.json
File metadata and controls
42 lines (42 loc) · 1.66 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": "codescythe-workspace",
"private": true,
"packageManager": "pnpm@10.33.4",
"imports": {
"#packages/*": "./packages/*",
"#tests/*": "./tests/*",
"#tools/*": "./tools/*"
},
"scripts": {
"test": "bazel test //...",
"test:npm": "node --experimental-transform-types ./node_modules/mocha/bin/mocha.js --extension ts packages/codescythe/npm_smoke.ts",
"format": "lefthook run pre-commit --all-files",
"prepare": "lefthook install",
"build:binary": "bazel build //crates/codescythe_cli:release_binaries",
"build:napi": "bazel build //crates/codescythe_napi:release_nodes",
"build:packages": "bazel build :dist",
"gazelle": "bazel run //:gazelle",
"benchmark": "node --experimental-transform-types benchmarks/run.ts",
"benchmark:grafana": "node --experimental-transform-types benchmarks/run.ts --fixture grafana",
"benchmark:kibana": "node --experimental-transform-types benchmarks/run.ts --fixture kibana",
"benchmark:renovate": "node --experimental-transform-types benchmarks/run.ts --fixture renovate",
"benchmark:vscode": "node --experimental-transform-types benchmarks/run.ts --fixture vscode",
"conformance:kibana": "node --experimental-transform-types benchmarks/kibana_conformance.ts",
"build:docs": "bazel build //docs:build",
"localdev:docs": "bazel run //docs:localdev",
"deploy:docs": "bazel run //docs:deploy"
},
"devDependencies": {
"@types/node": "^24.12.4",
"benchmark": "^2.1.4",
"knip": "^6.12.2",
"lefthook": "^2.1.8",
"mocha": "^11.0.0",
"open-props": "^1.7.23",
"react": "^19.2.6",
"react-dom": "^19.2.6"
},
"workspaces": [
"packages/*"
]
}