-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
116 lines (116 loc) · 3.2 KB
/
package.json
File metadata and controls
116 lines (116 loc) · 3.2 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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
{
"name": "handover-cli",
"version": "0.1.0",
"description": "Generate comprehensive codebase documentation for handover",
"type": "module",
"bin": {
"handover": "./dist/index.js"
},
"files": [
"dist/",
"README.md",
"LICENSE"
],
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"dev": "tsx src/cli/index.ts",
"build": "tsup",
"docs:changelog": "node scripts/generate-docs-changelog.mjs",
"docs:commands": "node scripts/generate-docs-command-reference.mjs",
"docs:generate": "npm run docs:changelog && npm run docs:commands",
"docs:build": "astro build --config docs/astro.config.mjs",
"test": "vitest run --passWithNoTests",
"typecheck": "tsc --noEmit",
"lint": "eslint src --max-warnings 0",
"lint:fix": "eslint src --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"prepare": "husky",
"release": "npm run release:precheck && npm run release:publish",
"release:precheck": "npm run lint && npm run typecheck && npm test && npm run build",
"release:publish": "npm publish --provenance --access public"
},
"keywords": [
"documentation",
"handover",
"codebase",
"llm",
"analysis"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/farce1/handover/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/farce1/handover.git"
},
"homepage": "https://github.com/farce1/handover#readme",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
},
"dependencies": {
"@anthropic-ai/sdk": "0.82.0",
"@clack/prompts": "^1.0.1",
"@google/genai": "^1.43.0",
"@modelcontextprotocol/sdk": "^1.26.0",
"better-sqlite3": "^12.6.2",
"commander": "^14.0.3",
"fast-glob": "^3.3.3",
"gpt-tokenizer": "^3.4.0",
"ignore": "^7.0.5",
"open": "^11.0.0",
"openai": "^6.22.0",
"openid-client": "^6.8.2",
"picocolors": "^1.1.0",
"simple-git": "^3.32.2",
"sisteransi": "^1.0.5",
"smol-toml": "^1.6.0",
"sqlite-vec": "^0.1.7-alpha.2",
"web-tree-sitter": "0.26.8",
"yaml": "^2.7.0",
"zod": "^4.3.6",
"zod-to-json-schema": "^3.24.0"
},
"devDependencies": {
"@astrojs/check": "^0.9.6",
"@astrojs/mdx": "^5.0.0",
"@astrojs/starlight": "^0.38.1",
"@commitlint/cli": "^20.4.2",
"@commitlint/config-conventional": "^20.4.2",
"@types/better-sqlite3": "^7.6.13",
"@types/cli-progress": "^3.11.6",
"@types/node": "^25.2.3",
"@vitest/coverage-v8": "^4.0.18",
"astro": "^6.0.4",
"cli-progress": "^3.12.0",
"eslint": "^10.0.1",
"eslint-config-prettier": "^10.1.8",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"memfs": "^4.56.10",
"prettier": "^3.8.1",
"starlight-links-validator": "^0.22.0",
"tree-sitter-wasms": "0.1.13",
"tsup": "^8.0.0",
"tsx": "^4.0.0",
"typescript": "^5.7.0",
"typescript-eslint": "^8.56.0",
"vitest": "^4.0.18",
"vitest-mock-extended": "^4.0.0"
},
"engines": {
"node": ">=18.0.0"
},
"lint-staged": {
"*.{ts,js}": [
"eslint --fix",
"prettier --write"
],
"*.{json,md,yml,yaml}": [
"prettier --write"
]
}
}