-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 774 Bytes
/
Copy pathpackage.json
File metadata and controls
27 lines (27 loc) · 774 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
{
"name": "contextify",
"version": "0.1.0",
"private": true,
"description": "AI Context Compression Infrastructure — screenshots → structured markdown for Claude Code",
"license": "MIT",
"packageManager": "pnpm@9.12.0",
"engines": {
"node": ">=20"
},
"scripts": {
"build": "pnpm -r --filter \"./packages/*\" run build",
"dev": "pnpm --filter backend run start:dev",
"test": "pnpm -r --filter \"./packages/*\" run test",
"lint": "pnpm -r --filter \"./packages/*\" run lint",
"format": "prettier --write \"packages/**/*.{ts,js,json,md}\""
},
"devDependencies": {
"@types/node": "^20.14.10",
"prettier": "^3.3.3",
"typescript": "^6.0.3"
},
"dependencies": {
"bull": "^4.16.5",
"ioredis": "^5.4.1"
}
}