-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.34 KB
/
Copy pathpackage.json
File metadata and controls
51 lines (51 loc) · 1.34 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
{
"name": "@serticode/thoth",
"version": "1.1.0",
"description": "Identity Preserving Publishing Engine",
"type": "module",
"bin": {
"thoth": "./dist/index.js"
},
"files": [
"dist"
],
"scripts": {
"dev": "tsx src/index.ts",
"build": "tsup src/index.ts --clean --out-dir dist --format esm --external better-sqlite3 --external sqlite-vec --external pino",
"start": "node dist/index.js",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"lint": "eslint src/",
"format": "prettier --write 'src/**/*.ts'",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.106.0",
"better-sqlite3": "^12.11.1",
"cli-progress": "^3.12.0",
"commander": "^12.1.0",
"marked": "^18.0.5",
"openai": "^4.73.0",
"ora": "^9.4.1",
"pino": "^9.6.0",
"sqlite-vec": "^0.1.9",
"tiktoken": "^1.0.15",
"zod": "^3.24.0"
},
"devDependencies": {
"@eslint/js": "^9.18.0",
"@types/better-sqlite3": "^7.6.12",
"@types/cli-progress": "^3.11.6",
"@types/node": "^22.10.0",
"@vitest/coverage-v8": "^2.1.0",
"eslint": "^9.18.0",
"globals": "^15.14.0",
"prettier": "^3.4.0",
"tsup": "^8.5.1",
"tsx": "^4.19.0",
"typescript": "^5.7.0",
"typescript-eslint": "^8.20.0",
"vitest": "^2.1.0"
}
}