-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
111 lines (111 loc) · 3.88 KB
/
Copy pathpackage.json
File metadata and controls
111 lines (111 loc) · 3.88 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
{
"name": "opencovibe",
"version": "0.6.3",
"description": "Local-first desktop app for AI-assisted vibe coding",
"type": "module",
"license": "Apache-2.0",
"homepage": "https://github.com/AnyiWang/OpenCovibe",
"repository": {
"type": "git",
"url": "https://github.com/AnyiWang/OpenCovibe.git"
},
"bugs": {
"url": "https://github.com/AnyiWang/OpenCovibe/issues"
},
"engines": {
"node": ">=20"
},
"scripts": {
"dev": "vite dev",
"build": "vite build",
"preview": "vite preview",
"tauri": "tauri",
"macos:build:signed": "bash scripts/build-signed-macos.sh",
"macos:verify:signed": "bash scripts/build-signed-macos.sh --verify-only",
"recall:prepare": "node scripts/prepare-recall-sidecar.mjs",
"recall:sign:macos": "node scripts/sign-recall-macos.mjs",
"recall:package": "node scripts/package-recall-runtime.mjs",
"test": "vitest run",
"test:recall": "node --test scripts/test-recall-sidecar.mjs",
"test:watch": "vitest",
"lint": "eslint src/",
"lint:fix": "eslint src/ --fix",
"format": "prettier --write src/",
"format:check": "prettier --check src/",
"check": "svelte-check --tsconfig ./tsconfig.json",
"rust:fmt": "cargo fmt --manifest-path src-tauri/Cargo.toml --check",
"rust:clippy": "cargo clippy --manifest-path src-tauri/Cargo.toml -- -D warnings",
"rust:check": "npm run rust:fmt && npm run rust:clippy",
"i18n:check": "node scripts/i18n-check.mjs",
"fix": "npm run lint:fix && npm run format && cargo fmt --manifest-path src-tauri/Cargo.toml",
"verify": "npm run lint && npm run format:check && npm run check && npm run i18n:check && npm run test && npm run test:recall && npm run build && npm run rust:check",
"release": "node scripts/release.mjs",
"prebuild:dmg": "node scripts/clean-dmg.mjs",
"prepare": "git config core.hooksPath .githooks"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"@sveltejs/adapter-static": "^3.0.8",
"@sveltejs/kit": "^2.16.0",
"@sveltejs/vite-plugin-svelte": "^5.1.1",
"@tailwindcss/typography": "^0.5.19",
"@tauri-apps/cli": "^2.5.0",
"@types/diff": "^7.0.2",
"@types/turndown": "^5.0.6",
"autoprefixer": "^10.4.20",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-svelte": "^3.15.0",
"globals": "^17.3.0",
"jsdom": "^29.1.1",
"postcss": "^8.5.1",
"prettier": "^3.8.1",
"prettier-plugin-svelte": "^3.4.1",
"svelte": "^5.53.3",
"svelte-check": "^4.3.6",
"tailwindcss": "^3.4.17",
"typescript": "^5.7.0",
"typescript-eslint": "^8.55.0",
"vite": "^6.1.0",
"vitest": "^4.0.18"
},
"dependencies": {
"@codemirror/lang-cpp": "^6.0.3",
"@codemirror/lang-css": "^6.3.1",
"@codemirror/lang-go": "^6.0.1",
"@codemirror/lang-html": "^6.4.11",
"@codemirror/lang-java": "^6.0.2",
"@codemirror/lang-javascript": "^6.2.5",
"@codemirror/lang-json": "^6.0.2",
"@codemirror/lang-markdown": "^6.5.0",
"@codemirror/lang-python": "^6.2.1",
"@codemirror/lang-rust": "^6.0.2",
"@codemirror/lang-sql": "^6.10.0",
"@codemirror/lang-xml": "^6.1.0",
"@codemirror/lang-yaml": "^6.1.2",
"@codemirror/language-data": "^6.5.2",
"@codemirror/legacy-modes": "^6.5.2",
"@codemirror/theme-one-dark": "^6.1.3",
"@recallai/desktop-sdk": "2.0.26",
"@tauri-apps/api": "^2.5.0",
"@tauri-apps/plugin-dialog": "^2.2.0",
"@tauri-apps/plugin-notification": "^2.3.3",
"@tauri-apps/plugin-shell": "^2.2.0",
"@xterm/addon-fit": "^0.11.0",
"@xterm/addon-web-links": "^0.12.0",
"@xterm/xterm": "^6.0.0",
"codemirror": "^6.0.1",
"diff": "^8.0.3",
"dompurify": "^3.2.4",
"exceljs": "^4.4.0",
"highlight.js": "^11.11.0",
"mammoth": "^1.11.0",
"marked": "^15.0.0",
"turndown": "^7.2.2"
},
"browserslist": [
"safari >= 16.1",
"chrome >= 105",
"edge >= 105"
]
}