-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.41 KB
/
Copy pathpackage.json
File metadata and controls
45 lines (45 loc) · 1.41 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
{
"name": "captions",
"version": "0.1.0",
"description": "Pull video transcripts, extract entities and relationships, score truthiness, and explore a queryable map of who/what/where across a corpus of contested video.",
"type": "module",
"main": "dist/index.js",
"bin": {
"captions": "dist/cli/index.js"
},
"scripts": {
"build": "tsc",
"test": "vitest run",
"test:ci": "vitest run && npm run metrics:check && npm run drift:check",
"test:watch": "vitest",
"drift:check": "node tools/check-doc-drift.mjs",
"lint": "eslint src/",
"lint:fix": "eslint src/ --fix",
"dev": "tsx watch --clear-screen=false src/ui/main.ts",
"add": "tsx src/cli/index.ts add",
"ingest": "tsx src/cli/index.ts ingest",
"heal": "tsx src/cli/index.ts heal",
"pipeline": "tsx src/cli/index.ts pipeline",
"cli": "tsx src/cli/index.ts",
"backup": "tsx scripts/backup-data.ts",
"audit": "tsx scripts/audit-state.ts",
"metrics": "tsx src/metrics/cli.ts",
"metrics:baseline": "tsx src/metrics/cli.ts --baseline",
"metrics:check": "tsx src/metrics/cli.ts --check",
"clean": "rm -rf dist"
},
"devDependencies": {
"@types/node": "^25.6.0",
"eslint": "^9.0.0",
"tsx": "^4.19.0",
"typescript": "^5.7.0",
"typescript-eslint": "^8.0.0",
"vitest": "^3.0.0"
},
"engines": {
"node": ">=20"
},
"dependencies": {
"@xenova/transformers": "^2.17.2"
}
}