-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.97 KB
/
Copy pathpackage.json
File metadata and controls
43 lines (43 loc) · 1.97 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
{
"name": "stella-tooling",
"version": "0.0.0",
"private": true,
"license": "Apache-2.0",
"workspaces": [
"packages/*"
],
"scripts": {
"build": "bun --filter @stll/oxlint-config build && bun --filter @stll/oxlint-plugin build",
"changeset": "changeset",
"changeset:version": "changeset version && bun scripts/check-lockfile-workspace-versions.ts --write && bun install --frozen-lockfile",
"check:lockfile-versions": "bun scripts/check-lockfile-workspace-versions.ts",
"typecheck": "bun --filter @stll/oxlint-config typecheck && bun --filter @stll/oxlint-plugin typecheck",
"test": "bun test",
"test:rust-lints": "cd rust-lints/stella_lints && cargo test",
"lint": "bun run build && bun --bun oxlint -c oxlint.config.ts --report-unused-disable-directives-severity=error --deny-warnings --type-aware .",
"lint:fix": "bun --bun oxlint -c oxlint.config.ts --type-aware --fix .",
"format": "oxfmt . \"!.ai/**\" \"!.agents/**\" \"!.claude/**\" \"!AGENTS.md\" \"!CLAUDE.md\" \"!GEMINI.md\"",
"publint": "publint --pack npm packages/typescript-config && publint --pack npm packages/oxlint-config && publint --pack npm packages/oxlint-plugin",
"pack:dry-run": "bun run build && (cd packages/typescript-config && npm pack --dry-run) && (cd packages/oxlint-config && npm pack --dry-run) && (cd packages/oxlint-plugin && npm pack --dry-run)",
"prepack": "bun run build && bun run typecheck",
"sync-ai": "bash scripts/sync-ai-skills.sh",
"sync-ai:check": "bash scripts/sync-ai-skills.sh --check"
},
"devDependencies": {
"@changesets/changelog-github": "1.0.0",
"@changesets/cli": "3.0.0",
"@stll/oxlint-config": "workspace:*",
"@stll/oxlint-plugin": "workspace:*",
"bun-types": "1.4.0",
"oxfmt": "0.48.0",
"oxlint": "1.75.0",
"oxlint-tsgolint": "7.0.2001",
"publint": "0.3.21",
"tsdown": "0.22.9",
"typescript": "7.0.2"
},
"overrides": {
"js-yaml": "3.15.1"
},
"packageManager": "bun@1.4.0"
}