-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.18 KB
/
Copy pathpackage.json
File metadata and controls
38 lines (38 loc) · 1.18 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
{
"name": "seseri",
"private": true,
"version": "4.0.0",
"type": "module",
"description": "Seseri — free, no-account podcast player. iTunes search, RSS, YouTube audio.",
"license": "MIT",
"scripts": {
"dev": "vite",
"build": "tsc --noEmit && vite build",
"preview": "vite preview",
"test": "vitest run",
"test:watch": "vitest",
"lint": "eslint src",
"format": "prettier --write \"src/**/*.{ts,css}\" \"worker/src/**/*.ts\" \"*.{json,md}\"",
"typecheck": "tsc --noEmit",
"worker:dev": "npm --prefix worker run dev",
"worker:typecheck": "npm --prefix worker run typecheck",
"worker:test": "npm --prefix worker run test",
"verify": "npm run lint && npm run typecheck && npm run test && vite build && npm run worker:typecheck && npm run worker:test"
},
"devDependencies": {
"@eslint/js": "^9.30.0",
"eslint": "^9.30.0",
"eslint-config-prettier": "^10.1.0",
"jsdom": "^29.1.1",
"prettier": "^3.6.0",
"puppeteer-core": "^24.0.0",
"typescript": "~5.8.3",
"typescript-eslint": "^8.35.0",
"vite": "^7.0.0",
"vite-plugin-pwa": "^1.0.1",
"vitest": "^3.2.0"
},
"dependencies": {
"idb": "^8.0.3"
}
}