forked from danielgwilson/fathom-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.52 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) · 1.52 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
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "fathom-video-cli",
"version": "0.1.4",
"description": "Agent-first CLI + skill for Fathom's official API",
"license": "MIT",
"author": "Daniel G Wilson",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/danielgwilson/fathom-cli.git"
},
"homepage": "https://github.com/danielgwilson/fathom-cli#readme",
"bugs": {
"url": "https://github.com/danielgwilson/fathom-cli/issues"
},
"bin": {
"fathom": "dist/cli.js",
"fathom-video-cli": "dist/cli.js"
},
"files": [
"dist",
"docs",
"skills",
"README.md",
"LICENSE"
],
"keywords": [
"fathom",
"fathom-ai",
"meetings",
"transcript",
"summary",
"cli",
"agent-first"
],
"scripts": {
"clean": "node -e \"require('node:fs').rmSync('dist',{recursive:true,force:true})\"",
"build": "npm run clean && tsc -p tsconfig.build.json && node -e \"require('node:fs').chmodSync('dist/cli.js',0o755)\"",
"dev": "tsx src/cli.ts",
"typecheck": "tsc -p tsconfig.json --noEmit",
"lint": "npm run typecheck",
"pretest": "npm run build",
"test": "tsx --test",
"start": "node dist/cli.js",
"prepublishOnly": "npm test",
"prepare": "npm run build"
},
"dependencies": {
"commander": "^12.1.0",
"yazl": "^3.3.1"
},
"devDependencies": {
"@types/node": "^25.3.2",
"@types/yazl": "^3.3.0",
"tsx": "^4.21.0",
"typescript": "^5.9.3"
},
"engines": {
"node": ">=22"
},
"publishConfig": {
"access": "public"
}
}