-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 689 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 689 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
{
"name": "dewey",
"version": "2.1.0",
"description": "Audiobook migrator with Claude normalization",
"license": "MIT",
"author": "Mason Fox <masonfox22@gmail.com>",
"type": "module",
"main": "src/index.js",
"packageManager": "bun@1.3.0",
"scripts": {
"start": "bun run src/index.js",
"dev": "bun run src/index.js",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage"
},
"dependencies": {
"axios": "^1.7.5",
"chokidar": "^3.6.0",
"fs-extra": "^11.2.0",
"pino": "^9.3.1",
"pino-pretty": "^11.2.2"
},
"devDependencies": {
"@vitest/coverage-v8": "^4.0.18",
"vitest": "^4.0.18"
}
}