-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 2.09 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 2.09 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
{
"name": "pupila",
"version": "0.1.0",
"private": true,
"type": "module",
"description": "Config-driven local-first daily job aggregator.",
"license": "MIT",
"engines": {
"node": ">=22 <23",
"pnpm": ">=11 <12"
},
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "tsx src/index.ts",
"ai-review": "tsx src/ai-review.ts",
"setup-brief": "tsx src/setup-brief.ts",
"clean": "tsx scripts/clean.ts",
"clean:onboarding": "tsx scripts/clean.ts --onboarding",
"daily": "pnpm run dev && pnpm run ai-review",
"apply-worker": "tsx scripts/apply-worker.ts",
"mcp": "tsx src/mcp/index.ts",
"typecheck": "tsc --noEmit && tsc --noEmit -p tsconfig.test.json && tsc --noEmit -p ui/tsconfig.json",
"lint": "biome check",
"lint:fix": "biome check --write",
"lint:ui-patterns": "bash scripts/check-ui-patterns.sh",
"lint:bundle-size": "bash scripts/check-bundle-size.sh",
"format": "biome format --write",
"test": "vitest run",
"test:watch": "vitest",
"ui": "vite --config ui/vite.config.ts",
"ui:build": "vite build --config ui/vite.config.ts",
"prepare": "simple-git-hooks"
},
"simple-git-hooks": {
"pre-commit": "pnpm run lint && pnpm run typecheck && pnpm run lint:ui-patterns"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.29.0",
"clsx": "^2.1.1",
"fast-xml-parser": "^5.7.3",
"mammoth": "^1.8.0",
"pdfjs-dist": "^5.7.284",
"proper-lockfile": "^4.1.2",
"zod": "^4.4.3"
},
"devDependencies": {
"@biomejs/biome": "^2.4.14",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@types/node": "^22.10.0",
"@types/proper-lockfile": "^4.1.4",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^6.0.1",
"jsdom": "^29.1.1",
"react": "^19.2.6",
"react-dom": "^19.2.6",
"simple-git-hooks": "^2.13.1",
"tsx": "^4.19.0",
"typescript": "^6.0.3",
"vite": "^8.0.10",
"vitest": "^4.1.5"
},
"packageManager": "pnpm@11.1.1"
}