-
Notifications
You must be signed in to change notification settings - Fork 201
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.29 KB
/
Copy pathpackage.json
File metadata and controls
63 lines (63 loc) · 1.29 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
{
"name": "fieldtheory",
"version": "1.3.22",
"description": "Field Theory CLI for bookmarks, Library, commands, app install, and agent workflows.",
"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"
},
"homepage": "https://fieldtheory.dev/cli",
"bugs": {
"url": "https://github.com/afar1/fieldtheory-cli/issues"
},
"keywords": [
"field-theory",
"bookmarks",
"twitter",
"x",
"library",
"commands",
"agent-tools",
"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"
}
}