-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.31 KB
/
package.json
File metadata and controls
87 lines (87 loc) · 2.31 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "@open330/oac",
"version": "2026.222.2",
"description": "Open Agent Contribution - automate open source contributions with AI agents",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/open330/open-agent-contribution.git"
},
"homepage": "https://github.com/open330/open-agent-contribution",
"bugs": {
"url": "https://github.com/open330/open-agent-contribution/issues"
},
"type": "module",
"main": "./dist/core/index.js",
"types": "./dist/core/index.d.ts",
"bin": {
"oac": "./dist/cli/index.js"
},
"exports": {
".": {
"import": "./dist/core/index.js",
"types": "./dist/core/index.d.ts"
}
},
"files": ["dist", "README.md", "LICENSE", "CHANGELOG.md", "docs"],
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=20.0.0"
},
"packageManager": "pnpm@9.15.4",
"scripts": {
"build": "tsup",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"format": "biome format --write .",
"typecheck": "tsc --noEmit",
"dev:dashboard": "tsx src/dashboard/dev.ts",
"clean": "rm -rf dist coverage",
"prepublishOnly": "pnpm build && pnpm test"
},
"dependencies": {
"@fastify/cors": "^10.0.2",
"@fastify/static": "^8.1.0",
"@inquirer/prompts": "^6.0.0",
"@octokit/rest": "^21.1.1",
"@xterm/xterm": "^5.5.0",
"chalk": "^5.4.1",
"cli-table3": "^0.6.5",
"commander": "^13.1.0",
"eventemitter3": "^5.0.1",
"execa": "^9.5.2",
"fastify": "^5.8.1",
"ora": "^8.1.1",
"p-queue": "^8.1.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"recharts": "^2.15.1",
"simple-git": "^3.32.3",
"tiktoken": "^1.0.18",
"zod": "^3.24.2"
},
"pnpm": {
"overrides": {
"minimatch@<10.2.3": ">=10.2.3",
"rollup@>=4.0.0 <4.59.0": ">=4.59.0",
"tmp@<=0.2.3": ">=0.2.4",
"simple-git@>=3.15.0 <3.32.3": ">=3.32.3",
"fastify@>=5.7.2 <=5.8.0": ">=5.8.1"
}
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@changesets/cli": "^2.27.12",
"@types/node": "^22.0.0",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"tsup": "^8.4.0",
"tsx": "^4.19.0",
"typescript": "^5.7.3",
"vitest": "^3.0.5"
}
}