forked from joelhooks/opencode-vibe
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.17 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.17 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
{
"name": "opencode-next",
"module": "index.ts",
"type": "module",
"private": true,
"packageManager": "bun@1.3.5",
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"dev": "turbo dev",
"build": "turbo build",
"lint": "turbo lint",
"format": "biome format --write .",
"format:check": "biome format .",
"typecheck": "turbo type-check",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"ci:version": "changeset version && bun update",
"ci:publish": "for dir in packages/*; do (cd \"$dir\" && bun publish --access public || true); done && changeset tag"
},
"devDependencies": {
"@biomejs/biome": "^2.3.10",
"@changesets/changelog-github": "^0.5.2",
"@changesets/cli": "^2.29.8",
"@types/bun": "latest",
"@types/jsdom": "^27.0.0",
"@typescript/native-preview": "^7.0.0-dev.20251226.1",
"@vitest/coverage-v8": "^4.0.16",
"happy-dom": "^20.0.11",
"jsdom": "^27.4.0",
"msw": "^2.12.7",
"oxlint": "^1.35.0",
"turbo": "^2.7.2",
"vitest": "^4.0.16"
},
"peerDependencies": {
"typescript": "^5.9.3"
},
"dependencies": {
"fuzzysort": "^3.1.0",
"next-themes": "^0.4.6",
"zod": "^4.2.1"
}
}