This repository was archived by the owner on Feb 25, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 2.68 KB
/
package.json
File metadata and controls
92 lines (92 loc) · 2.68 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
{
"name": "aiknowsys",
"version": "0.10.0",
"description": "AI-Powered Development Workflow for Consistent, High-Quality Code",
"keywords": [
"ai",
"copilot",
"claude",
"agents",
"knowledge-management",
"documentation",
"developer-workflow",
"code-review"
],
"author": "arpa73",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/arpa73/aiknowsys.git"
},
"homepage": "https://github.com/arpa73/aiknowsys#readme",
"bugs": {
"url": "https://github.com/arpa73/aiknowsys/issues"
},
"type": "module",
"bin": {
"aiknowsys": "./bin/cli.js",
"aks": "./bin/cli.js"
},
"files": [
"bin/",
"dist/",
"templates/",
"scripts/",
"SETUP_GUIDE.md",
"README.md",
"LICENSE"
],
"engines": {
"node": ">=20.0.0"
},
"scripts": {
"build": "tsc",
"postbuild": "mkdir -p dist/scripts dist/lib/context && cp package.json dist/ && cp scripts/*.js scripts/*.cjs scripts/*.mjs dist/scripts/ 2>/dev/null || true && cp lib/context/schema.sql dist/lib/context/ 2>/dev/null || true",
"build:watch": "tsc --watch",
"dev": "tsc --watch",
"type-check": "tsc --noEmit",
"clean": "bash scripts/cleanup-test-dirs.sh",
"clean:dry-run": "bash scripts/cleanup-test-dirs.sh --dry-run",
"pretest": "npm run build",
"test": "vitest run",
"test:watch": "vitest",
"test:ui": "vitest --ui",
"test:coverage": "vitest run --coverage",
"test:cli": "node bin/cli.js --help",
"lint": "eslint lib/ bin/ test/",
"lint:fix": "eslint lib/ bin/ test/ --fix",
"install-hooks": "node templates/scripts/install-git-hooks.cjs",
"generate:hooks": "node scripts/generate-hook-wrappers.js",
"update:hooks-config": "node scripts/update-hooks-config.js",
"prepublishOnly": "npm run build && npm run lint && npm run test:cli && npm pack --dry-run",
"postversion": "git push && git push --tags"
},
"dependencies": {
"better-sqlite3": "^12.6.2",
"chalk": "^5.6.2",
"clipboardy": "^4.0.0",
"commander": "^14.0.2",
"inquirer": "^13.2.1",
"ora": "^9.1.0",
"yaml": "^2.8.2"
},
"optionalDependencies": {
"aiknowsys-plugin-context7": "file:./plugins/aiknowsys-plugin-context7"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"@types/better-sqlite3": "^7.6.13",
"@types/inquirer": "^9.0.9",
"@types/node": "^22.19.11",
"@typescript-eslint/eslint-plugin": "^8.54.0",
"@typescript-eslint/parser": "^8.54.0",
"@vitest/coverage-v8": "^4.0.18",
"@vitest/ui": "^4.0.18",
"c8": "^10.1.3",
"eslint": "^9.39.2",
"globals": "^17.2.0",
"ts-morph": "^27.0.2",
"typescript": "^5.9.3",
"vitest": "^4.0.18"
}
}