-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 904 Bytes
/
Copy pathpackage.json
File metadata and controls
33 lines (33 loc) · 904 Bytes
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
{
"name": "sessionkeeper",
"version": "0.1.0",
"description": "Chrome extension for managing browser sessions",
"type": "module",
"scripts": {
"dev": "bun run vite",
"build": "bun run tsc && bun run vite build",
"preview": "bun run vite preview",
"test": "bun test",
"test:watch": "bun test --watch",
"icons": "./scripts/generate-icons.sh"
},
"dependencies": {
"dexie": "^4.0.11",
"lucide-react": "^0.563.0",
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"devDependencies": {
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/chrome": "^0.0.268",
"@types/node": "^20.14.0",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@vitejs/plugin-react": "^4.3.1",
"fake-indexeddb": "^6.2.5",
"happy-dom": "^20.3.7",
"typescript": "^5.5.3",
"vite": "^5.3.3"
}
}