-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.58 KB
/
Copy pathpackage.json
File metadata and controls
47 lines (47 loc) · 1.58 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
{
"name": "astkit-workspace",
"private": true,
"workspaces": [
"packages/*"
],
"type": "module",
"scripts": {
"astkit": "bun run packages/astkit/src/cli.ts",
"sgrep": "bun run packages/sgrep/src/cli.ts",
"spatch": "bun run packages/spatch/src/cli.ts",
"nav": "bun run packages/nav/src/cli.ts",
"format": "oxfmt .",
"format:check": "oxfmt --check .",
"lint": "oxlint --deny-warnings .",
"audit": "bun audit --production",
"build": "tsc -b tsconfig.build.json",
"typecheck": "tsc --noEmit",
"test": "bun test",
"test:coverage": "bun test --coverage",
"test:spatch": "bun test packages/spatch/__tests__",
"test:spatch:coverage": "bun test --coverage packages/spatch/__tests__",
"bench": "bun run bench/run.ts",
"bench:baseline": "bun run bench/baseline.ts",
"bench:check": "bun run bench/check.ts",
"knip": "knip",
"knip:deps": "knip --dependencies --files",
"changeset": "changeset",
"version-packages": "changeset version && node scripts/refresh-lockfile.mjs",
"release": "changeset publish",
"pack:check": "npm pack --workspaces --dry-run",
"skill:install": "bunx skills@1.5.20 add ./packages/astkit/skills/astkit-tooling -a codex -y"
},
"devDependencies": {
"@changesets/cli": "^2.31.1",
"@claudiu-ceia/sgrep": "workspace:*",
"@claudiu-ceia/spatch": "workspace:*",
"@types/bun": "^1.3.14",
"@types/node": "^22.20.1",
"knip": "^6.29.0",
"mitata": "^1.0.34",
"oxfmt": "^0.60.0",
"oxlint": "^1.75.0",
"typescript": "^6.0.3"
},
"packageManager": "bun@1.3.14"
}