-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.49 KB
/
Copy pathpackage.json
File metadata and controls
57 lines (57 loc) · 1.49 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
{
"name": "github-pattern-knowledge",
"version": "0.1.0",
"private": true,
"type": "module",
"description": "Markdown-first GitHub engineering pattern knowledge base for Codex and programming agents.",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/libenxier-beep/github-pattern-knowledge.git"
},
"bugs": {
"url": "https://github.com/libenxier-beep/github-pattern-knowledge/issues"
},
"homepage": "https://github.com/libenxier-beep/github-pattern-knowledge#readme",
"keywords": [
"agents",
"codex",
"github",
"knowledge-base",
"software-architecture",
"engineering-patterns"
],
"engines": {
"node": ">=22.12",
"npm": ">=10"
},
"scripts": {
"dev": "vite",
"daily": "tsx src/cli/daily.ts",
"seed": "tsx src/cli/seed.ts",
"index": "tsx src/cli/indexes.ts",
"evidence": "tsx src/cli/evidence.ts",
"harness": "tsx src/cli/harness.ts",
"scheduler": "tsx src/cli/scheduler.ts",
"build": "tsc -b && vite build",
"typecheck": "tsc --noEmit",
"test": "vitest run"
},
"dependencies": {
"@vitejs/plugin-react": "^5.1.1",
"lucide-react": "^0.556.0",
"node-cron": "^4.2.1",
"react": "^19.2.1",
"react-dom": "^19.2.1",
"yaml": "^2.8.2"
},
"devDependencies": {
"@types/node": "^25.0.0",
"@types/react": "^19.2.7",
"@types/react-dom": "^19.2.3",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"vite": "^7.2.7",
"vitest": "^4.0.15"
}
}