-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 2.66 KB
/
Copy pathpackage.json
File metadata and controls
93 lines (93 loc) · 2.66 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
{
"name": "opencoder",
"version": "1.2.4",
"private": true,
"description": "Tauri 2 + SolidJS desktop client for OpenCode",
"type": "module",
"engines": {
"node": ">=20"
},
"scripts": {
"start": "vite",
"dev": "vite",
"build": "vite build",
"serve": "vite preview",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"test:e2e": "playwright test",
"verify": "node scripts/verify.mjs",
"check:i18n": "node scripts/check-i18n.mjs",
"check:links": "node scripts/check-links.mjs",
"check:bundle": "node scripts/check-bundle.mjs",
"gen:api": "node scripts/gen-api.mjs",
"gen:api:check": "node scripts/gen-api.mjs --check",
"mock:start": "tsx tests/mock-server/index.ts",
"mock:test": "node tests/mock-server/self-test.mjs",
"fixtures:record": "node scripts/record-fixtures.mjs",
"tauri": "tauri",
"prepare": "husky"
},
"license": "MIT",
"lint-staged": {
"*.{ts,tsx,js,mjs,cjs}": [
"eslint --fix",
"prettier --write"
],
"*.{json,css,md,html}": [
"prettier --write"
]
},
"dependencies": {
"@kobalte/core": "^0.13.12",
"@solid-primitives/keyed": "^1.5.3",
"@tauri-apps/api": "^2",
"@tauri-apps/plugin-barcode-scanner": "2.4.5",
"@tauri-apps/plugin-dialog": "^2.7.2",
"@tauri-apps/plugin-haptics": "2.3.2",
"@tauri-apps/plugin-notification": "2.3.3",
"@tauri-apps/plugin-opener": "^2",
"@tauri-apps/plugin-process": "^2",
"@tauri-apps/plugin-updater": "^2",
"@xterm/addon-fit": "^0.11.0",
"@xterm/xterm": "^6.0.0",
"dompurify": "^3.4.13",
"i18next": "^26.3.6",
"markdown-it": "^15.0.0",
"markdown-it-task-lists": "^2.1.1",
"qrcode": "^1.5.4",
"shiki": "^4.4.1",
"solid-js": "^1.9.3"
},
"devDependencies": {
"@eslint/js": "^9.39.5",
"@playwright/test": "^1.62.1",
"@solidjs/testing-library": "^0.8.10",
"@tailwindcss/vite": "^4.3.3",
"@tauri-apps/cli": "^2",
"@testing-library/jest-dom": "^7.0.0",
"@types/express": "^5.0.6",
"@types/node": "^26.1.2",
"@types/qrcode": "^1.5.6",
"@vitest/coverage-v8": "^4.1.10",
"ajv": "^6.15.0",
"axe-core": "^4.12.1",
"eslint": "^9.39.5",
"eslint-plugin-solid": "^0.14.5",
"express": "^5.2.1",
"globals": "^17.9.0",
"husky": "^9.1.7",
"jsdom": "^30.0.1",
"lint-staged": "^17.3.0",
"openapi-typescript": "^7.13.0",
"prettier": "^3.9.6",
"tailwindcss": "^4.3.3",
"tsx": "^4.23.5",
"typescript": "~5.6.2",
"typescript-eslint": "^8.65.0",
"vite": "^6.0.3",
"vite-plugin-solid": "^2.11.0",
"vitest": "^4.1.10",
"ws": "^8.21.2"
}
}