-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.97 KB
/
Copy pathpackage.json
File metadata and controls
62 lines (62 loc) · 1.97 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
{
"name": "commitlore",
"version": "1.2.0",
"description": "Git-native, lifecycle-aware decision memory for coding agents",
"license": "MIT",
"private": true,
"commitlore": {
"indexSchemaVersion": 4
},
"type": "module",
"files": [
"dist",
"spec"
],
"engines": {
"node": ">=22.23.2"
},
"scripts": {
"build": "tsc -p tsconfig.json && npm run bundle",
"build:canonical": "docker run --rm --platform linux/amd64 -v \"$PWD\":/w -w /w node:24-bookworm@sha256:934240a162082fd8b8a2f90cd5114446443f1eba1c5378f6687167ca405e6584 sh -c \"npm ci && npm run build\"",
"artifact:manifest": "node scripts/write-canonical-artifact-manifest.mjs",
"artifact:verify": "node scripts/verify-canonical-artifact.mjs",
"bench:deterministic": "npm run build && node --experimental-strip-types bench/deterministic.ts",
"bench:external": "npm run build && node --experimental-strip-types bench/external/run.ts",
"bench:verify": "node bench/verify.mjs",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc -p tsconfig.json --noEmit",
"bundle": "esbuild src/cli.ts --bundle --platform=node --format=esm --target=node22 --outfile=dist/commitlore.mjs",
"bench:m5": "node --experimental-strip-types bench/m5-analysis.ts"
},
"keywords": [
"git",
"git-trailers",
"ai-agents",
"commit-messages",
"knowledge-management",
"mcp"
],
"repository": {
"type": "git",
"url": "git+https://github.com/MongLong0214/commitlore.git"
},
"homepage": "https://github.com/MongLong0214/commitlore#readme",
"bugs": {
"url": "https://github.com/MongLong0214/commitlore/issues"
},
"devDependencies": {
"@types/js-yaml": "^4.0.9",
"@types/node": "^22.10.0",
"esbuild": "^0.28.2",
"js-yaml": "^5.2.3",
"typescript": "^5.7.0",
"vitest": "^2.1.0"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.29.0",
"ajv": "^8.20.0",
"ajv-formats": "^3.0.1",
"commander": "^15.0.0"
}
}