-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 2.57 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 2.57 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
{
"name": "@tools-src/tools",
"version": "0.1.0",
"type": "module",
"scripts": {
"clean": "rm -rf dist node_modules bun.lock",
"build": "bun build ./src/index.ts --outdir ./dist --target node --minify",
"dev": "bun run ./src/index.ts",
"test": "bun test --coverage",
"test:watch": "bun test --watch",
"typecheck": "tsc --noEmit -p config/tsconfig.json",
"lint": "oxlint --quiet src/",
"lint:fix": "oxlint --quiet --fix src/",
"format": "oxfmt src",
"format:check": "oxfmt --check src",
"tools": "bun run ./src/cli/index.ts",
"chat": "bun run ./src/copilot/chat/index.ts",
"summary": "bun run ./src/copilot/generate/test-local.ts",
"github": "bun run ./src/github/cli.ts",
"github:menu": "bun run ./src/github/cli.ts --interactive",
"github:lint": "oxlint --quiet src/github",
"github:typecheck": "tsc --noEmit -p config/tsconfig.json",
"github:test": "bun run github:typecheck && bun run github:lint && bun test src/tests/shared.test.ts src/tests/github-cli.test.ts && bun run github -- --help && bun run github:detect-bots -- --help && bun run github:scan-secrets -- --help && bun run github:detect-bots -- --local --dry-run && bun run github:scan-secrets -- --local --dry-run",
"cli:typecheck": "tsc --noEmit -p config/tsconfig.json",
"github:detect-bots": "bun run ./src/github/cli.ts detect-bots",
"github:purge-actions": "bun run ./src/github/cli.ts purge-actions",
"github:purge-packages": "bun run ./src/github/cli.ts purge-packages",
"github:purge-release": "bun run ./src/github/cli.ts purge-release",
"github:purge-tags": "bun run ./src/github/cli.ts purge-tags",
"github:scan-secrets": "bun run ./src/github/cli.ts scan-secrets",
"todo": "bun run ./src/todo/sync-todo.ts",
"todo:push": "bun run ./src/todo/sync-todo.ts push",
"todo:pull": "bun run ./src/todo/sync-todo.ts pull",
"todo:labels": "bun run ./src/todo/sync-todo.ts labels",
"todo:typecheck": "tsc --noEmit -p config/tsconfig.json",
"todo:lint": "oxlint --quiet src/todo",
"todo:test": "bun run todo:typecheck && bun run todo:lint && bun test src/tests/todo.test.ts"
},
"dependencies": {
"@actions/core": "^3.0.0",
"@actions/github": "^9.0.0",
"@clack/prompts": "^1.1.0",
"@github/copilot-sdk": "^0.2.0",
"js-yaml": "^4.1.1",
"picocolors": "^1.1.1",
"zod": "^4.3.6"
},
"devDependencies": {
"@j178/prek": "^0.3.6",
"@types/bun": "^1.3.10",
"@types/js-yaml": "^4.0.9",
"@types/node": "^25.5.0",
"oxfmt": "^0.41.0",
"oxlint": "^1.56.0",
"typescript": "^5.9.3"
}
}