-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.16 KB
/
Copy pathpackage.json
File metadata and controls
52 lines (52 loc) · 1.16 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
{
"name": "@fs/mycroft",
"version": "0.4.1",
"license": "MIT",
"type": "module",
"bin": {
"mycroft": "./bin/mycroft.js"
},
"repository": {
"type": "git",
"url": "https://github.com/fabe/mycroft.git"
},
"homepage": "https://github.com/fabe/mycroft",
"files": [
"bin",
"dist",
"README.md",
"LICENSE",
"completions"
],
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=18"
},
"scripts": {
"build": "tsup src/cli.ts --format esm --out-dir dist --platform node --target node18 --sourcemap",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"prepublishOnly": "npm run build"
},
"dependencies": {
"@ai-sdk/openai": "^3.0.25",
"@lingo-reader/epub-parser": "^0.4.5",
"ai": "^6.0.73",
"better-sqlite3": "^11.2.0",
"chalk": "^5.4.1",
"commander": "^12.1.0",
"openai": "^4.104.0",
"vectra": "^0.12.3"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.13",
"@types/node": "^24.1.3",
"@vitest/coverage-v8": "^4.0.18",
"tsup": "^8.1.0",
"typescript": "^5.5.4",
"vitest": "^4.0.18"
}
}