forked from runbear-io/aweek
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
101 lines (101 loc) · 2.92 KB
/
Copy pathpackage.json
File metadata and controls
101 lines (101 loc) · 2.92 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "aweek-opencode",
"version": "0.1.1",
"description": "OpenCode companion CLI for managing multiple AI agents on scheduled weekly plans. Each agent is a 1-to-1 wrapper around an OpenCode agent with its own goals, objectives, tasks, and token budget.",
"type": "module",
"main": "dist/src/index.js",
"bin": {
"aweek": "dist/bin/aweek.js",
"aweek-opencode": "dist/bin/aweek.js"
},
"files": [
"dist",
"skills",
"README.md",
"LICENSE"
],
"scripts": {
"test": "tsx scripts/run-tests.mts",
"test:verbose": "tsx scripts/run-tests.mts --reporter=spec",
"test:spa": "vitest run --config vitest.config.js",
"test:spa:watch": "vitest --config vitest.config.js",
"typecheck": "tsc --noEmit -p tsconfig.node.json",
"typecheck:spa": "tsc --noEmit -p tsconfig.spa.json",
"dev": "tsx scripts/dev.mts",
"dev:spa": "vite --config vite.config.js",
"lint": "node --check src/**/*.js",
"build": "tsx scripts/build.mts",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs",
"prepublishOnly": "pnpm build"
},
"keywords": [
"opencode",
"opencode-agent",
"ai-agents",
"subagents",
"scheduling",
"weekly-planning"
],
"author": "Runbear, Inc.",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/junhodo/aweek-opencode.git"
},
"homepage": "https://github.com/junhodo/aweek-opencode#readme",
"publishConfig": {
"access": "public"
},
"packageManager": "pnpm@10.7.0",
"engines": {
"node": ">=20.0.0"
},
"dependencies": {
"agentchannels": "^0.2.0",
"@radix-ui/react-dialog": "^1.1.6",
"@radix-ui/react-dropdown-menu": "^2.1.6",
"@radix-ui/react-label": "^2.1.2",
"@radix-ui/react-scroll-area": "^1.2.3",
"@radix-ui/react-separator": "^1.1.2",
"@radix-ui/react-slot": "^1.1.2",
"@radix-ui/react-tabs": "^1.1.3",
"@radix-ui/react-toast": "^1.2.6",
"@radix-ui/react-tooltip": "^1.1.8",
"ajv": "^8.17.1",
"ajv-formats": "^3.0.1",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"lucide-react": "^0.468.0",
"tailwind-merge": "^2.6.0"
},
"devDependencies": {
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@types/node": "^25.6.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"autoprefixer": "^10.4.20",
"jsdom": "^29.0.2",
"postcss": "^8.5.1",
"react": "^19.2.5",
"react-dom": "^19.2.5",
"react-markdown": "^10.1.0",
"react-router-dom": "^7.0.2",
"remark-gfm": "^4.0.1",
"tailwindcss": "^3.4.17",
"tsx": "4.21.0",
"typescript": "^6.0.3",
"vite": "^6.4.2",
"vitepress": "^1.6.4",
"vitest": "^4.1.5"
},
"pnpm": {
"overrides": {
"esbuild@<0.25.0": "~0.25.0",
"vite@<6.4.2": "^6.4.2"
}
}
}