forked from afar1/fieldtheory-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.15 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.15 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
{
"name": "fieldtheory",
"version": "1.3.20",
"description": "Field Theory CLI. Self-custody for your X/Twitter bookmarks. Local sync, full-text search, classification, and terminal dashboards.",
"type": "module",
"bin": {
"ft": "bin/ft.mjs",
"fieldtheory": "bin/ft.mjs"
},
"scripts": {
"build": "tsc -p tsconfig.json",
"test": "tsx --test tests/**/*.test.ts",
"dev": "tsx src/cli.ts",
"start": "node dist/cli.js",
"prepublishOnly": "npm run build"
},
"files": [
"bin/",
"dist/",
"LICENSE",
"README.md"
],
"engines": {
"node": ">=20"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/afar1/fieldtheory-cli.git"
},
"keywords": [
"bookmarks",
"twitter",
"x",
"search",
"fts5",
"sqlite",
"local-first",
"self-custody",
"cli"
],
"dependencies": {
"commander": "^14.0.3",
"dotenv": "^17.3.1",
"sql.js": "^1.14.1",
"sql.js-fts5": "^1.4.0",
"undici": "^6.25.0"
},
"devDependencies": {
"@types/node": "^25.5.0",
"@types/sql.js": "^1.4.11",
"tsx": "^4.21.0",
"typescript": "^6.0.2"
}
}