-
-
Notifications
You must be signed in to change notification settings - Fork 42
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.17 KB
/
Copy pathpackage.json
File metadata and controls
73 lines (73 loc) · 2.17 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
{
"name": "@os-eco/mulch-cli",
"version": "0.10.7",
"description": "Let your agents grow 🌱 — structured expertise files that accumulate over time, live in git, work with any agent",
"type": "module",
"bin": {
"mulch": "src/cli.ts",
"ml": "src/cli.ts"
},
"main": "src/index.ts",
"files": ["src"],
"publishConfig": {
"access": "public"
},
"scripts": {
"test": "bun test",
"lint": "biome check --error-on-warnings src/ test/",
"lint:fix": "biome check --write src/ test/",
"typecheck": "tsc --noEmit",
"check:size": "bun run scripts/check-file-sizes.ts",
"check:debt": "bun run scripts/check-debt-markers.ts",
"check:dups": "bunx jscpd",
"check:deps": "bunx knip --dependencies --include-entry-exports",
"check:coverage": "bun run scripts/check-coverage.ts",
"check:agents": "bun run scripts/validate-agents-md.ts",
"check:ci-parity": "bun scripts/check-ci-parity.ts",
"check:all": "bun scripts/check-all.ts",
"verify": "bun run check:all",
"report:timing": "bun run scripts/report-test-timing.ts",
"report:quality": "bun run scripts/report-quality-metrics.ts",
"test:ci": "bun test --coverage --coverage-reporter=lcov --reporter=junit --reporter-outfile=junit.xml",
"version:bump": "bun run scripts/version-bump.ts",
"prepare": "git config core.hooksPath scripts/hooks || true"
},
"engines": {
"bun": ">=1.0.0"
},
"keywords": [
"ai",
"agents",
"expertise",
"knowledge-management",
"cli",
"developer-tools"
],
"author": "Jaymin West",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/jayminwest/mulch.git"
},
"homepage": "https://github.com/jayminwest/mulch#readme",
"bugs": {
"url": "https://github.com/jayminwest/mulch/issues"
},
"dependencies": {
"ajv": "^8.17.1",
"chalk": "^5.6.2",
"commander": "^14.0.3",
"js-yaml": "^4.1.1",
"pino": "^10.3.1"
},
"devDependencies": {
"@biomejs/biome": "^2.4.6",
"@types/bun": "latest",
"@types/js-yaml": "^4.0.9",
"jscpd": "^4.0.5",
"knip": "^6.0.0",
"pino-pretty": "^13.1.3",
"typescript": "^6.0.3",
"yaml": "^2.9.0"
}
}