-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 917 Bytes
/
Copy pathpackage.json
File metadata and controls
31 lines (31 loc) · 917 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
{
"name": "bookify",
"version": "1.0.0",
"private": true,
"description": "An installable PWA that turns long-form webpages into an ebook-like reading experience.",
"type": "module",
"scripts": {
"dev": "vite",
"build": "npm run typecheck && vite build && node scripts/build-bookmarklet.mjs && node scripts/build-sw.mjs",
"preview": "vite preview",
"typecheck": "tsc --noEmit",
"lint": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"test:e2e": "playwright test",
"icons": "node scripts/generate-icons.mjs",
"bookmarklet": "node scripts/build-bookmarklet.mjs",
"fixture": "node scripts/build-fixture.mjs"
},
"dependencies": {
"idb": "^8.0.0"
},
"devDependencies": {
"@playwright/test": "^1.48.0",
"@types/node": "^22.20.1",
"jsdom": "^25.0.1",
"typescript": "^5.6.0",
"vite": "^5.4.0",
"vitest": "^2.1.0"
}
}