-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
101 lines (101 loc) · 2.6 KB
/
package.json
File metadata and controls
101 lines (101 loc) · 2.6 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "draftmora",
"version": "0.1.2",
"description": "Local-first AI agent board with chat, SQLite storage, and OpenAI account auth.",
"private": false,
"license": "MIT",
"homepage": "https://github.com/afurm/draftmora#readme",
"bugs": {
"url": "https://github.com/afurm/draftmora/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/afurm/draftmora.git"
},
"packageManager": "npm@11.12.1",
"engines": {
"node": ">=22.14.0"
},
"type": "module",
"bin": {
"draftmora": "bin/draftmora.mjs"
},
"files": [
"bin/",
"dist/",
".env.example",
"README.md",
"CHANGELOG.md",
"LICENSE"
],
"publishConfig": {
"access": "public"
},
"keywords": [
"ai",
"ai-agent",
"agent-board",
"agent-chat",
"openai",
"openai-auth",
"task-board",
"local-first",
"sqlite",
"productivity",
"task-management"
],
"scripts": {
"dev": "concurrently -k -n api,web -c cyan,magenta \"tsx watch src/server/index.ts\" \"vite --host 0.0.0.0\"",
"server": "tsx watch src/server/index.ts",
"start": "node dist/server/index.js",
"web": "vite --host 0.0.0.0",
"clean": "node scripts/clean-dist.mjs",
"typecheck": "tsc --noEmit",
"build": "npm run clean && npm run typecheck && npm run build:web && npm run build:server",
"build:web": "vite build --outDir dist/client",
"build:server": "vite build --config vite.server.config.ts",
"test": "vitest run",
"preview": "vite preview --host 0.0.0.0 --outDir dist/client",
"prepack": "npm run build"
},
"dependencies": {
"@fastify/cors": "^11.0.0",
"@fastify/static": "^9.1.3",
"@mariozechner/pi-ai": "^0.73.0",
"dotenv": "^17.4.2",
"fastify": "^5.2.1",
"typebox": "^1.1.38",
"zod": "^4.4.3"
},
"devDependencies": {
"@fontsource-variable/geist": "^5.2.8",
"@tailwindcss/vite": "^4.2.4",
"@types/node": "^25.6.0",
"@types/react": "^19.0.4",
"@types/react-dom": "^19.0.2",
"@vitejs/plugin-react": "^6.0.1",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"concurrently": "^9.1.2",
"jsdom": "^29.1.1",
"lucide-react": "^1.14.0",
"radix-ui": "^1.4.3",
"react": "^19.2.6",
"react-dom": "^19.2.6",
"react-markdown": "^10.1.0",
"remark-gfm": "^4.0.1",
"shadcn": "^4.7.0",
"tailwind-merge": "^3.5.0",
"tailwindcss": "^4.2.4",
"tsx": "^4.19.2",
"tw-animate-css": "^1.4.0",
"typescript": "^6.0.3",
"vite": "^8.0.10",
"vitest": "^4.1.5"
},
"overrides": {
"express-rate-limit": {
"ip-address": "10.2.0"
}
}
}