-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 956 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 956 Bytes
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
{
"name": "uptier",
"version": "1.0.0",
"private": true,
"description": "MCP-powered To-Do application with intelligent task prioritization",
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"dev:electron": "pnpm --filter @uptier/electron dev",
"dev:mcp": "pnpm --filter @uptier/mcp-server dev",
"build": "pnpm -r build",
"build:shared": "pnpm --filter @uptier/shared build",
"build:mcp": "pnpm --filter @uptier/mcp-server build",
"build:electron": "pnpm --filter @uptier/electron build",
"package": "pnpm --filter @uptier/electron package",
"clean": "pnpm -r clean",
"typecheck": "pnpm -r typecheck"
},
"keywords": [
"mcp",
"todo",
"task-management",
"electron",
"claude"
],
"author": "",
"license": "MIT",
"engines": {
"node": ">=18.0.0"
},
"devDependencies": {
"canvas": "^3.2.0",
"electron-vite": "^5.0.0",
"png-to-ico": "^3.0.1"
}
}