-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2.75 KB
/
Copy pathpackage.json
File metadata and controls
69 lines (69 loc) · 2.75 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
68
69
{
"name": "agentic-dev-boilerplate",
"type": "module",
"version": "1.0.0",
"description": "",
"author": "",
"license": "ISC",
"keywords": [],
"scripts": {
"agents:setup": "bun scripts/agents-setup.ts",
"api:sync": "bun scripts/sync-openapi.ts",
"claude": "dotenv -o -e .env -- claude",
"context:hydrate": "bun scripts/sync-jira-issues.ts pull --include-comments",
"format:check": "prettier --check '**/*.{json,yml,yaml,css,scss,html}' --ignore-path .prettierignore",
"format:fix": "prettier --write '**/*.{json,yml,yaml,css,scss,html}' --ignore-path .prettierignore",
"jira:check": "bun scripts/check-jira-setup.ts",
"jira:sync-fields": "bun scripts/sync-jira-fields.ts",
"jira:sync-issues": "bun scripts/sync-jira-issues.ts",
"jira:sync-link-types": "bun scripts/sync-jira-link-types.ts",
"jira:sync-workflows": "bun scripts/sync-jira-workflows.ts",
"jira:url": "bun scripts/atlassian-url.ts",
"lint:check": "eslint .",
"lint:fix": "eslint --fix .",
"onboarding": "bun scripts/onboarding.ts",
"opencode": "dotenv -o -e .env -- opencode",
"prepare": "husky",
"repo:check": "bun run format:check && bun run lint:check && bun run types:check && bun run vars:check && bun run vars:env:check && bun run skills:check && bun run skills:registry:check",
"repo:fix": "bun run format:fix && bun run lint:fix && bun run types:check && bun run vars:check && bun run vars:env:check && bun run skills:check && bun run skills:registry:check",
"setup:doctor": "bun cli/doctor.ts",
"setup": "bun cli/doctor.ts --preflight && bun cli/install.ts",
"skills:check": "bun scripts/lint-skills.ts",
"skills:registry:check": "bun scripts/build-skill-registry.ts --check",
"skills:registry": "bun scripts/build-skill-registry.ts",
"test": "bun test cli/lib/ scripts/ && bun test --cwd .claude/skills/acli/scripts",
"types:check": "tsc --noEmit",
"up": "bun cli/update-boilerplate.ts",
"vars:check": "bun scripts/lint-vars.ts",
"git:policy": "bun scripts/git-policy.ts",
"vars:env:check": "bun scripts/check-vars.ts"
},
"dependencies": {
"@clack/prompts": "^1.4.0",
"@inquirer/prompts": "^8.1.0",
"boxen": "^8.0.1",
"cli-table3": "^0.6.5",
"figures": "^6.1.0",
"picocolors": "^1.1.1",
"yaml": "^2.8.2"
},
"devDependencies": {
"@antfu/eslint-config": "^4.16.0",
"@types/bun": "^1.3.5",
"@types/node": "^25.0.3",
"dotenv-cli": "^8.0.0",
"eslint": "^9.28.0",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"prettier": "^3.7.4",
"typescript": "^5.9.3"
},
"lint-staged": {
"*.{ts,tsx,js,jsx}": [
"eslint --fix"
],
"*.{json,yml,yaml,css,scss,html}": [
"prettier --write --ignore-path .prettierignore"
]
}
}