-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 2.04 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 2.04 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
{
"name": "mediarss",
"version": "4.1.0",
"engines": {
"node": ">=24.12.0"
},
"type": "module",
"private": true,
"imports": {
"#app/*": "./app/*",
"#test/*": "./test/*"
},
"scripts": {
"dev": "NODE_ENV=development node --import ./server/register-hooks.mjs --watch index.ts",
"dev:test": "DATABASE_PATH=./data/test.db CACHE_DATABASE_PATH=./data/test-cache.db MEDIA_PATHS=audio:./local-test/1/audio NODE_ENV=development node --import ./server/register-hooks.mjs --watch index.ts",
"dev:test-mounted": "DATABASE_PATH=./data/mounted.db CACHE_DATABASE_PATH=./data/mounted-cache.db MEDIA_PATHS=audio-series:/Volumes/media/audio/series,audiobooks:/Volumes/media/audio/audiobooks NODE_ENV=development node --import ./server/register-hooks.mjs --watch index.ts",
"test": "vitest run ./app --maxWorkers=1",
"test:playwright": "playwright test -c playwright-config.ts",
"start": "NODE_ENV=production node --import ./server/register-hooks.mjs index.ts",
"typecheck": "tsc --noEmit",
"format": "oxfmt .",
"format:check": "oxfmt --check .",
"lint": "oxlint --fix .",
"lint:check": "oxlint .",
"check": "oxfmt . && oxlint --fix .",
"check:ci": "oxfmt --check .",
"validate": "npm run check:ci && npm run lint:check && npm run typecheck && npm run test"
},
"devDependencies": {
"@epic-web/config": "^3.1.0",
"@playwright/test": "^1.59.1",
"@types/node": "^25.6.0",
"@types/semver": "^7.7.1",
"oxfmt": "^0.47.0",
"oxlint": "^1.62.0",
"semver": "^7.7.4",
"typescript": "^6.0.3",
"vitest": "^4.1.5"
},
"dependencies": {
"@epic-web/cachified": "^5.6.2",
"@epic-web/invariant": "^1.0.0",
"@mcp-ui/server": "^6.1.0",
"@modelcontextprotocol/sdk": "^1.29.0",
"close-with-grace": "^2.5.0",
"esbuild": "^0.28.0",
"fast-sort": "^3.4.1",
"get-port": "^7.2.0",
"jose": "^6.2.3",
"match-sorter": "^8.3.0",
"music-metadata": "^11.12.3",
"p-limit": "^7.3.0",
"remix": "3.0.0-beta.0",
"sharp": "^0.34.5",
"zod": "^4.4.1"
}
}