-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
106 lines (106 loc) · 3.33 KB
/
Copy pathpackage.json
File metadata and controls
106 lines (106 loc) · 3.33 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
{
"name": "hacky-hack",
"version": "0.1.0",
"description": "Autonomous PRP Development Pipeline - Agentic software development system",
"type": "module",
"bin": {
"hack": "./dist/index.js"
},
"engines": {
"node": ">=20.0.0",
"npm": ">=10.0.0"
},
"scripts": {
"=== Development ===": "",
"dev": "tsx src/index.ts",
"dev:watch": "nodemon --exec tsx src/index.ts",
"dev:debug": "node --inspect -r tsx src/index.ts",
"watch": "nodemon --exec tsx src/index.ts",
"=== Start ===": "",
"start": "node dist/index.js",
"start:dev": "NODE_ENV=development tsx src/index.ts",
"=== Build ===": "",
"build": "tsc -p tsconfig.build.json",
"build:watch": "tsc --watch",
"typecheck": "tsc --noEmit -p tsconfig.build.json",
"typecheck:watch": "tsc --noEmit --watch",
"prebuild": "npm run validate",
"=== Pipeline ===": "",
"pipeline": "tsx src/index.ts",
"pipeline:dev": "nodemon --exec tsx src/index.ts",
"=== Test ===": "",
"test": "vitest",
"test:run": "vitest run",
"test:watch": "vitest watch",
"test:coverage": "vitest run --coverage",
"test:bail": "vitest run --bail=1",
"=== Lint ===": "",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix",
"=== Format ===": "",
"format": "prettier --write \"**/*.{ts,js,json,md,yml,yaml}\"",
"format:check": "prettier --check \"**/*.{ts,js,json,md,yml,yaml}\"",
"=== Validation ===": "",
"validate": "npm run lint && npm run format:check && npm run typecheck",
"fix": "npm run lint:fix && npm run format",
"=== Groundswell ===": "",
"validate:groundswell": "tsx src/scripts/validate-groundswell.ts",
"=== API ===": "",
"validate:api": "tsx src/scripts/validate-api.ts",
"=== Documentation ===": "",
"docs": "typedoc --skipErrorChecking",
"docs:watch": "typedoc --skipErrorChecking --watch",
"docs:serve": "typedoc --skipErrorChecking --serve",
"docs:clean": "rm -rf docs/api",
"docs:check": "tsx scripts/check-docs.ts",
"docs:lint": "markdownlint \"docs/**/*.md\"",
"docs:lint:fix": "markdownlint \"docs/**/*.md\" --fix",
"docs:links": "markdown-link-check docs/**/*.md || true"
},
"keywords": [
"typescript",
"agent",
"pipeline",
"autonomous"
],
"author": "",
"license": "MIT",
"dependencies": {
"chalk": "^5.6.2",
"cli-highlight": "^2.1.11",
"cli-progress": "^3.12.0",
"cli-table3": "^0.6.5",
"commander": "^14.0.2",
"diff": "^8.0.3",
"fast-glob": "^3.3.3",
"groundswell": "file:.yalc/groundswell",
"ms": "^2.1.3",
"pino": "^9.14.0",
"simple-git": "^3.30.0",
"terser": "^5.46.0",
"tiktoken": "^1.0.22",
"zod": "^3.22.4"
},
"devDependencies": {
"@types/cli-progress": "^3.11.6",
"@types/ms": "^2.1.0",
"@types/node": "^20.10.0",
"@types/semver": "^7.7.1",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"@vitest/coverage-v8": "^1.6.1",
"dotenv": "^17.2.3",
"esbuild": "^0.27.2",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.2",
"eslint-plugin-prettier": "^5.5.4",
"nodemon": "^3.0.2",
"pino-pretty": "^11.3.0",
"prettier": "^3.7.4",
"tinybench": "^3.1.1",
"tsx": "^4.7.0",
"typedoc": "^0.28.16",
"typescript": "^5.2.0",
"vitest": "^1.6.1"
}
}