-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 1.66 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 1.66 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
65
66
67
68
69
70
71
72
73
74
{
"name": "pacatui",
"version": "0.1.16",
"description": "A simple tui app for task, timer and invoicing for projects.",
"module": "src/index.tsx",
"type": "module",
"private": false,
"bin": {
"paca": "./src/index.tsx"
},
"files": [
"src",
"prisma",
"generated",
"assets"
],
"scripts": {
"start": "bun run src/index.tsx",
"dev": "bun run --watch src/index.tsx",
"db:migrate": "bunx prisma migrate dev",
"db:push": "bunx prisma db push",
"db:studio": "bunx prisma studio",
"postinstall": "bunx prisma generate",
"prepublishOnly": "bunx prisma generate",
"release": "bunx bumpp && bun publish --access public"
},
"keywords": [
"tui",
"cli",
"task-manager",
"todo",
"project-management",
"terminal",
"time-tracking",
"invoicing",
"stripe",
"productivity",
"timesheet",
"bun"
],
"author": "Wes Edling",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/wes/paca.git"
},
"homepage": "https://github.com/wes/paca#readme",
"bugs": {
"url": "https://github.com/wes/paca/issues"
},
"engines": {
"bun": ">=1.0.0"
},
"devDependencies": {
"@types/bun": "latest",
"@types/react": "^19.2.8"
},
"peerDependencies": {
"typescript": "^5"
},
"dependencies": {
"@libsql/client": "^0.17.0",
"@opentui/core": "^0.1.72",
"@opentui/react": "^0.1.72",
"@prisma/adapter-better-sqlite3": "^7.2.0",
"@prisma/adapter-libsql": "^7.2.0",
"@prisma/client": "^7.2.0",
"better-sqlite3": "^12.6.0",
"paca4": ".",
"prisma": "^7.2.0",
"react": "^19.2.3",
"stripe": "^20.2.0"
}
}