-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.71 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 1.71 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
{
"name": "@markmdev/pebble",
"version": "0.2.0",
"description": "A lightweight JSONL-based issue tracker with CLI and React UI",
"type": "module",
"main": "dist/cli/index.js",
"bin": {
"pebble": "dist/cli/index.js",
"pb": "dist/cli/index.js"
},
"scripts": {
"build": "npm run build:cli && npm run build:ui",
"build:cli": "tsup",
"build:ui": "vite build",
"dev:ui": "vite",
"test": "vitest",
"test:run": "vitest run",
"typecheck": "tsc --noEmit",
"prepublishOnly": "npm run build"
},
"keywords": [
"issue-tracker",
"cli",
"jsonl",
"task-management"
],
"author": "markmdev",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/markmdev/pebble"
},
"files": [
"dist"
],
"dependencies": {
"chokidar": "^3.6.0",
"commander": "^12.1.0",
"cors": "^2.8.5",
"date-fns": "^4.1.0",
"express": "^4.21.0",
"open": "^10.1.0"
},
"devDependencies": {
"@tanstack/react-table": "^8.20.0",
"@types/cors": "^2.8.19",
"@types/express": "^4.17.21",
"@types/node": "^22.0.0",
"@types/react": "^18.3.0",
"@types/react-dom": "^18.3.0",
"@vitejs/plugin-react": "^4.3.0",
"autoprefixer": "^10.4.20",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"framer-motion": "^12.29.0",
"lucide-react": "^0.562.0",
"postcss": "^8.4.41",
"react": "^18.3.0",
"react-dom": "^18.3.0",
"reactflow": "^11.11.0",
"recharts": "^2.15.3",
"sonner": "^2.0.7",
"tailwind-merge": "^3.4.0",
"tailwindcss": "^3.4.10",
"tsup": "^8.2.0",
"typescript": "^5.5.0",
"vite": "^5.4.0",
"vitest": "^2.0.0"
},
"engines": {
"node": ">=18.0.0"
}
}