-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
134 lines (134 loc) · 3.93 KB
/
Copy pathpackage.json
File metadata and controls
134 lines (134 loc) · 3.93 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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
{
"$schema": "https://json.schemastore.org/package.json",
"name": "pawwork",
"description": "Desktop AI workstation for knowledge workers",
"private": true,
"type": "module",
"packageManager": "bun@1.3.14",
"scripts": {
"dev": "bun run dev:desktop",
"dev:desktop": "bun --cwd packages/desktop-electron dev",
"dev:web": "bun --cwd packages/app dev",
"snap": "bun packages/app/script/snap.ts",
"dev:opencode": "bun run --cwd packages/opencode --conditions=browser src/index.ts",
"frontend:inventory": "node script/frontend-inventory.mjs",
"frontend:inventory:json": "node script/frontend-inventory.mjs --format json",
"typecheck": "bun turbo typecheck",
"lint": "eslint \"packages/{app,ui,desktop-electron}/src/**/*.{ts,tsx}\"",
"lint:ci": "bun run lint",
"postinstall": "bun run --cwd packages/opencode fix-node-pty",
"test": "echo 'do not run tests from root' && exit 1"
},
"workspaces": {
"packages": [
"packages/*",
"packages/sdk/js"
],
"catalog": {
"@effect/opentelemetry": "4.0.0-beta.78",
"@effect/platform-node": "4.0.0-beta.78",
"@types/bun": "1.3.13",
"@types/cross-spawn": "6.0.6",
"@octokit/rest": "22.0.0",
"@hono/zod-validator": "0.4.2",
"ulid": "3.0.1",
"@kobalte/core": "0.13.11",
"@types/luxon": "3.7.1",
"@types/node": "22.13.9",
"@types/semver": "7.7.1",
"@tsconfig/node22": "22.0.2",
"@tsconfig/bun": "1.0.9",
"@openauthjs/openauth": "0.0.0-20250322224806",
"@pierre/diffs": "1.1.0-beta.18",
"@solid-primitives/storage": "4.3.3",
"@tailwindcss/vite": "4.1.11",
"diff": "8.0.2",
"drizzle-kit": "1.0.0-beta.19-d95b7a4",
"drizzle-orm": "1.0.0-beta.19-d95b7a4",
"effect": "4.0.0-beta.78",
"ai": "6.0.158",
"cross-spawn": "7.0.6",
"hono": "4.12.25",
"hono-openapi": "1.1.2",
"fuzzysort": "3.1.0",
"luxon": "3.6.1",
"marked": "17.0.1",
"marked-shiki": "1.2.1",
"remend": "1.3.0",
"typescript": "5.8.2",
"@typescript/native-preview": "7.0.0-dev.20251207.1",
"zod": "4.1.8",
"remeda": "2.26.0",
"shiki": "3.20.0",
"solid-list": "0.3.0",
"tailwindcss": "4.1.11",
"virtua": "0.42.3",
"vite": "7.3.5",
"@solidjs/meta": "0.29.4",
"@solidjs/router": "0.15.4",
"solid-js": "1.9.13",
"vite-plugin-solid": "2.11.10",
"@lydell/node-pty": "1.2.0-beta.10"
}
},
"devDependencies": {
"@tsconfig/bun": "catalog:",
"@types/mime-types": "3.0.1",
"@typescript/native-preview": "catalog:",
"eslint": "^9.39.4",
"eslint-plugin-solid": "0.14.5",
"glob": "13.0.5",
"prettier": "3.6.2",
"semver": "^7.6.0",
"sst": "4.15.2",
"turbo": "2.8.13",
"typescript-eslint": "8.59.3"
},
"dependencies": {
"@opencode-ai/plugin": "workspace:*",
"@opencode-ai/script": "workspace:*",
"@opencode-ai/sdk": "workspace:*",
"typescript": "catalog:"
},
"repository": {
"type": "git",
"url": "https://github.com/Astro-Han/pawwork"
},
"license": "Apache-2.0",
"prettier": {
"semi": false,
"printWidth": 120
},
"trustedDependencies": [
"esbuild",
"node-pty",
"tree-sitter",
"tree-sitter-bash",
"tree-sitter-powershell",
"web-tree-sitter",
"electron"
],
"overrides": {
"@types/bun": "catalog:",
"@types/node": "catalog:",
"brace-expansion": "5.0.8",
"@xmldom/xmldom": "0.8.13",
"fast-uri": "3.1.4",
"fastify": "5.8.5",
"form-data": "4.0.6",
"find-my-way": "9.7.0",
"hono": "catalog:",
"esbuild": "0.28.1",
"lodash": "4.18.1",
"js-yaml": "4.3.0",
"postcss": "8.5.23",
"sigstore": "4.1.1",
"tar": "7.5.21",
"ws": "8.21.0",
"tmp": "0.2.7"
},
"patchedDependencies": {
"gray-matter@4.0.3": "patches/gray-matter@4.0.3.patch",
"brace-expansion@5.0.8": "patches/brace-expansion@5.0.8.patch"
}
}