-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.49 KB
/
Copy pathpackage.json
File metadata and controls
46 lines (46 loc) · 1.49 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
{
"name": "buzai",
"private": true,
"version": "0.1.0-alpha.1",
"description": "A local-first noncommercial desktop companion for macOS",
"license": "SEE LICENSE IN LICENSE",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"preview": "vite preview",
"test": "vitest src",
"test:run": "vitest run src",
"test:integrations": "node --test integrations/**/*.test.mjs",
"check": "npm run test:run && npm run test:integrations && npm run build && npm run validate:theme",
"validate:theme": "node scripts/validate-theme.mjs themes/default/theme.json",
"tauri": "tauri",
"tauri:build": "tauri build",
"mcp": "node integrations/mcp/server.mjs",
"hooks:install": "node integrations/install-hooks.mjs",
"hooks:remove": "node integrations/install-hooks.mjs --remove"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.18.0",
"@tauri-apps/api": "^2.8.0",
"@tauri-apps/plugin-autostart": "^2.5.0",
"@tauri-apps/plugin-dialog": "^2.4.0",
"pixi.js": "^8.13.2",
"react": "^19.1.1",
"react-dom": "^19.1.1",
"zod": "^3.25.76"
},
"devDependencies": {
"@tauri-apps/cli": "^2.8.4",
"@testing-library/jest-dom": "^6.8.0",
"@testing-library/react": "^16.3.0",
"@types/node": "^24.3.1",
"@types/react": "^19.1.12",
"@types/react-dom": "^19.1.9",
"@vitejs/plugin-react": "^5.0.2",
"jsdom": "^26.1.0",
"typescript": "~5.9.2",
"vite": "^7.1.5",
"vitest": "^3.2.4"
}
}