@pmelab/gtd 1.4.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (4) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +800 -0
  3. package/dist/gtd.bundle.mjs +388717 -0
  4. package/package.json +82 -0
package/package.json ADDED
@@ -0,0 +1,82 @@
1
+ {
2
+ "name": "@pmelab/gtd",
3
+ "version": "1.4.3",
4
+ "private": false,
5
+ "description": "Git-aware CLI that emits the next prompt for an autonomous coding agent based on the current repository state",
6
+ "bin": {
7
+ "gtd": "dist/gtd.bundle.mjs"
8
+ },
9
+ "files": [
10
+ "dist/",
11
+ "README.md",
12
+ "LICENSE"
13
+ ],
14
+ "publishConfig": {
15
+ "access": "public"
16
+ },
17
+ "license": "MIT",
18
+ "repository": {
19
+ "type": "git",
20
+ "url": "https://github.com/pmelab/gtd.git"
21
+ },
22
+ "engines": {
23
+ "node": ">=22"
24
+ },
25
+ "type": "module",
26
+ "scripts": {
27
+ "prepare": "husky",
28
+ "dev": "node dev/run.mjs",
29
+ "build": "tsup",
30
+ "watch": "tsup --watch",
31
+ "test": "npm run format:check && npm run typecheck && npm run lint && npm run test:unit && npm run test:e2e && fallow --summary --quiet",
32
+ "test:unit": "vitest run --project unit",
33
+ "test:watch": "vitest",
34
+ "pretest:e2e": "tsup --silent",
35
+ "test:e2e": "vitest run --project e2e",
36
+ "typecheck": "tsc --noEmit",
37
+ "lint": "eslint .",
38
+ "format": "prettier --write .",
39
+ "format:check": "prettier --check . --log-level warn",
40
+ "test:mutation": "stryker run"
41
+ },
42
+ "lint-staged": {
43
+ "*": "prettier --ignore-unknown --write"
44
+ },
45
+ "devDependencies": {
46
+ "@effect/eslint-plugin": "^0.3.2",
47
+ "@effect/language-service": "^0.72.0",
48
+ "@eslint/js": "^9.39.2",
49
+ "@semantic-release/exec": "^7.1.0",
50
+ "@semantic-release/git": "^10.0.1",
51
+ "@semantic-release/github": "^12.0.8",
52
+ "@semantic-release/npm": "^12.0.0",
53
+ "@stryker-mutator/core": "^9.6.1",
54
+ "@stryker-mutator/typescript-checker": "^9.6.1",
55
+ "@stryker-mutator/vitest-runner": "^9.6.1",
56
+ "@types/diff": "^7.0.2",
57
+ "@types/node": "^25.9.3",
58
+ "eslint": "^9.39.2",
59
+ "fallow": "^2.104.0",
60
+ "fast-check": "^4.8.0",
61
+ "husky": "^9.1.7",
62
+ "jiti": "^2.7.0",
63
+ "lint-staged": "^17.0.8",
64
+ "quickpickle": "1.11.2",
65
+ "semantic-release": "^25.0.5",
66
+ "tsup": "^8.4.0",
67
+ "typescript-eslint": "^8.54.0",
68
+ "vitest": "^3.2.0",
69
+ "yaml": "^2.8.2"
70
+ },
71
+ "peerDependencies": {
72
+ "typescript": "^5"
73
+ },
74
+ "dependencies": {
75
+ "@effect/platform": "^0.94.2",
76
+ "@effect/platform-node": "^0.104.1",
77
+ "cosmiconfig": "^9.0.2",
78
+ "diff": "^9.0.0",
79
+ "effect": "^3.19.15",
80
+ "prettier": "^3.8.1"
81
+ }
82
+ }