-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.62 KB
/
Copy pathpackage.json
File metadata and controls
85 lines (85 loc) · 2.62 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
{
"name": "patchmill",
"version": "0.12.0",
"private": false,
"publishConfig": {
"access": "public"
},
"files": [
"bin",
"src",
"dist",
"fixtures",
"docs",
"skills",
"extensions",
"README.md",
"CHANGELOG.md",
"LICENSE",
"THIRD_PARTY_NOTICES.md",
"tsconfig.build.json"
],
"repository": {
"type": "git",
"url": "git+https://github.com/rochecompaan/patchmill.git"
},
"keywords": [
"pi-package",
"ai",
"llm",
"cli",
"automation",
"triage",
"software-factory",
"orchestrator"
],
"license": "Apache-2.0",
"description": "An agent-driven software factory where humans and agents collaborate to preserve software craftsmanship.",
"type": "module",
"bin": {
"patchmill": "./dist/bin/patchmill.js"
},
"scripts": {
"patchmill": "node bin/patchmill.ts",
"triage": "node bin/patchmill.ts triage",
"run-once": "node bin/patchmill.ts run-once",
"build": "rm -rf dist && tsc -p tsconfig.build.json",
"prepack": "npm run build",
"lint": "npm run format:check && npm run lint:ts && npm run lint:md",
"lint:ts": "eslint \"{bin,src,test-support}/**/*.ts\" --max-warnings=0",
"lint:md": "markdownlint-cli2",
"format": "prettier --write .",
"format:check": "prettier --check .",
"prepare": "husky",
"test": "node --test \"bin/*.test.ts\" \"src/**/*.test.ts\" \"test-support/*.test.ts\"",
"test:coverage": "node --test --experimental-test-coverage --test-coverage-include='bin/**/*.ts' --test-coverage-include='src/**/*.ts' --test-coverage-include='test-support/**/*.ts' --test-coverage-exclude='**/*.test.ts' \"bin/*.test.ts\" \"src/**/*.test.ts\" \"test-support/*.test.ts\"",
"test:cli": "node --test bin/*.test.ts src/cli/main.test.ts",
"test:triage": "node --test src/cli/commands/triage/*.test.ts",
"test:run-once": "node --test src/cli/commands/run-once/*.test.ts"
},
"lint-staged": {
"*.{ts,js,json,md}": "prettier --write",
"{bin,src,test-support}/**/*.ts": "eslint --max-warnings=0",
"*.md": "markdownlint-cli2"
},
"engines": {
"node": ">=22.19.0"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"eslint": "^10.4.0",
"globals": "^17.6.0",
"husky": "^9.1.7",
"lint-staged": "^17.0.5",
"markdownlint-cli2": "^0.22.1",
"prettier": "^3.8.3",
"typescript": "^6.0.3",
"typescript-eslint": "^8.59.4"
},
"dependencies": {
"@earendil-works/pi-coding-agent": "^0.77.0",
"@earendil-works/pi-tui": "^0.77.0",
"pi-subagents": "^0.25.0",
"superpowers": "https://github.com/obra/superpowers/archive/refs/tags/v5.0.7.tar.gz"
}
}