-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.23 KB
/
Copy pathpackage.json
File metadata and controls
73 lines (73 loc) · 2.23 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
70
71
72
73
{
"name": "oss-autopilot",
"description": "AI-powered autopilot for managing open source contributions",
"private": true,
"type": "module",
"scripts": {
"build": "pnpm -r run build",
"bundle": "pnpm -r run bundle",
"start": "pnpm --filter @oss-autopilot/core run start",
"test": "pnpm -r run test",
"test:watch": "pnpm -r run test:watch",
"test:coverage": "pnpm -r run test:coverage",
"typecheck": "pnpm -r run typecheck",
"lint": "eslint packages/",
"lint:fix": "eslint packages/ --fix",
"format": "prettier --write packages/",
"format:check": "prettier --check packages/",
"docs": "pnpm --filter @oss-autopilot/core run docs",
"docs:check": "pnpm --filter @oss-autopilot/core run docs:check",
"dashboard:dev": "pnpm --filter @oss-autopilot/dashboard run dev",
"dashboard:build": "pnpm --filter @oss-autopilot/dashboard run build",
"generate:reference": "node scripts/generate-reference.mjs",
"prepare": "[ -n \"$CI\" ] || simple-git-hooks"
},
"simple-git-hooks": {
"pre-commit": "pnpm format:check",
"pre-push": "pnpm run lint",
"commit-msg": "./scripts/commit-msg.sh \"$1\""
},
"keywords": [
"claude-code-plugin",
"open-source",
"github",
"contributions",
"ai-agent",
"cli"
],
"author": "John Costa",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/costajohnt/oss-autopilot.git"
},
"homepage": "https://github.com/costajohnt/oss-autopilot#readme",
"bugs": {
"url": "https://github.com/costajohnt/oss-autopilot/issues"
},
"packageManager": "pnpm@10.27.0",
"engines": {
"node": ">=22.0.0"
},
"pnpm": {
"overrides": {
"hono": ">=4.12.25"
}
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@vitest/eslint-plugin": "1.6.20",
"eslint": "^10.6.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-import-x": "^4.17.1",
"eslint-plugin-n": "^18.2.1",
"eslint-plugin-promise": "^7.3.0",
"eslint-plugin-react-hooks": "^7.1.1",
"eslint-plugin-regexp": "^3.1.1",
"eslint-plugin-sonarjs": "^4.1.0",
"eslint-plugin-unicorn": "^71.0.0",
"prettier": "^3.9.4",
"simple-git-hooks": "^2.13.1",
"typescript-eslint": "^8.62.1"
}
}