-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1.03 KB
/
Copy pathpackage.json
File metadata and controls
35 lines (35 loc) · 1.03 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
{
"name": "tache-cli",
"version": "1.2.0",
"description": "A CLI tool for managing tasks and projects with a focus on simplicity and efficiency.",
"author": "fevunge",
"main": "src/main.ts",
"scripts": {
"start": "node dist/main.js",
"dev": "bun src/main.ts",
"compile": "esbuild src/main.ts --bundle --platform=node --outfile=dist/main.js",
"build": "bun build src/main.ts --compile --outfile=bin/tache"
},
"keywords": ["cli", "task management", "project management", "productivity", "ollama"],
"license": "ISC",
"packageManager": "pnpm@10.33.0",
"dependencies": {
"better-sqlite3": "^12.10.0",
"commander": "^15.0.0",
"drizzle-orm": "^0.45.2",
"fs-extra": "^11.3.4",
"kleur": "^4.1.5",
"pg": "^8.20.0",
"pg-hstore": "^2.3.4",
"zod": "^4.3.6"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.13",
"@types/fs-extra": "^11.0.4",
"@types/node": "^25.2.0",
"drizzle-kit": "^0.31.10",
"esbuild": "0.28.0",
"typescript": "^5.9.3",
"vitest": "^4.1.8"
}
}