-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.25 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.25 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
{
"name": "screenscrape",
"version": "1.0.0",
"description": "A terminal UI for extracting music track metadata from screenshots using Claude vision, with Discogs label lookup and Spotify integration.",
"license": "MIT",
"type": "module",
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"start": "tsx src/index.ts",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"test": "vitest run --dir test",
"test:watch": "vitest --dir test",
"prepare": "husky"
},
"dependencies": {
"@ai-sdk/anthropic": "^3.0.39",
"ai": "^6.0.77",
"clipboardy": "^5.2.1",
"dotenv": "^17.2.4",
"ink": "^6.6.0",
"ink-spinner": "^5.0.0",
"ink-text-input": "^6.0.0",
"react": "^19.2.4",
"remeda": "^2.33.5",
"ts-pattern": "^5.9.0",
"zod": "^3.23.0"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"@types/node": "^22.0.0",
"@types/react": "^19.2.13",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"husky": "^9.1.7",
"ink-testing-library": "^4.0.0",
"prettier": "^3.8.1",
"tsx": "^4.0.0",
"typescript": "^5.5.0",
"typescript-eslint": "^8.54.0",
"vitest": "^4.0.18"
}
}