forked from anomalyco/opencode
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.47 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.47 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
{
"$schema": "https://json.schemastore.org/package.json",
"name": "kuucode",
"private": true,
"type": "module",
"packageManager": "bun@1.2.14",
"bin": {
"kuucode": "./packages/kuucode/bin/kuucode"
},
"scripts": {
"start": "kuucode",
"dev": "bun run packages/kuucode/src/index.ts",
"typecheck": "npm run --workspace=packages/kuucode typecheck && npm run --workspace=packages/desktop typecheck",
"generate-sdks": "./scripts/generate-sdks",
"postinstall": "./scripts/hooks",
"desktop": "./scripts/desktop",
"desktop:dev": "./scripts/desktop dev",
"desktop:web": "./scripts/desktop web",
"desktop:build": "./scripts/desktop build",
"parity-daily": "./scripts/parity-daily",
"parity-notify": "./scripts/parity-notify",
"parity-integrate": "./scripts/parity-integrate",
"setup-notifications": "./scripts/setup-notifications"
},
"workspaces": {
"packages": [
"packages/*"
],
"catalog": {
"typescript": "5.8.2",
"@types/node": "22.13.9",
"zod": "3.25.49",
"ai": "5.0.0-beta.21"
}
},
"devDependencies": {
"@openapitools/openapi-generator-cli": "2.21.3",
"prettier": "3.5.3",
"sst": "3.17.8"
},
"repository": {
"type": "git",
"url": "https://github.com/moikas-code/kuucode"
},
"license": "MIT",
"prettier": {
"semi": false,
"printWidth": 120
},
"trustedDependencies": [
"esbuild",
"protobufjs",
"sharp"
],
"patchedDependencies": {}
}