create-ai-project 1.18.7 → 1.19.1
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.
- package/CHANGELOG.md +14 -0
- package/README.ja.md +1 -1
- package/README.md +1 -1
- package/package.json +4 -5
- package/.madgerc +0 -14
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,20 @@ All notable changes to this project will be documented in this file.
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
|
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
|
+
## [1.19.1] - 2026-03-30
|
|
9
|
+
|
|
10
|
+
### Changed
|
|
11
|
+
|
|
12
|
+
- Migrate circular dependency checker from madge to dpdm. madge has stale indirect dependencies with known security vulnerabilities (brace-expansion ReDoS) that are not being addressed upstream. dpdm is actively maintained and uses TypeScript compiler API directly with a shallower dependency tree.
|
|
13
|
+
- Remove `.madgerc` config file (settings migrated to dpdm CLI options)
|
|
14
|
+
- Remove unused `check:deps:graph` script
|
|
15
|
+
|
|
16
|
+
## [1.19.0] - 2026-03-30
|
|
17
|
+
|
|
18
|
+
### Changed
|
|
19
|
+
|
|
20
|
+
- Bump minimum Node.js version from >=20 to >=22 (Node 20 EOL: 2026-04-30)
|
|
21
|
+
|
|
8
22
|
## [1.18.7] - 2026-03-30
|
|
9
23
|
|
|
10
24
|
### Fixed
|
package/README.ja.md
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
*他の言語で読む: [English](README.md)*
|
|
4
4
|
|
|
5
5
|
[](https://www.typescriptlang.org/)
|
|
6
|
-
[](https://nodejs.org/)
|
|
7
7
|
[](https://claude.ai/code)
|
|
8
8
|
[](https://opensource.org/licenses/MIT)
|
|
9
9
|
[](https://github.com/shinpr/ai-coding-project-boilerplate/pulls)
|
package/README.md
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
*Read this in other languages: [日本語](README.ja.md)*
|
|
4
4
|
|
|
5
5
|
[](https://www.typescriptlang.org/)
|
|
6
|
-
[](https://nodejs.org/)
|
|
7
7
|
[](https://claude.ai/code)
|
|
8
8
|
[](https://opensource.org/licenses/MIT)
|
|
9
9
|
[](https://github.com/shinpr/ai-coding-project-boilerplate/pulls)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "create-ai-project",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.19.1",
|
|
4
4
|
"packageManager": "npm@10.8.2",
|
|
5
5
|
"description": "TypeScript boilerplate with skills and sub-agents for Claude Code. Prevents context exhaustion through role-based task splitting.",
|
|
6
6
|
"keywords": [
|
|
@@ -50,8 +50,7 @@
|
|
|
50
50
|
"check": "biome check src",
|
|
51
51
|
"check:fix": "biome check --write src",
|
|
52
52
|
"check:unused": "knip --include exports",
|
|
53
|
-
"check:deps": "
|
|
54
|
-
"check:deps:graph": "madge --extensions ts --image graph.svg src",
|
|
53
|
+
"check:deps": "dpdm --no-warning --no-tree --exit-code circular:1 --ext .ts --exclude \"__tests__|.test.ts$|.spec.ts$\" --tsconfig ./tsconfig.json -T \"src/**/*.ts\"",
|
|
55
54
|
"check:code": "npm run check && npm run check:unused && npm run check:deps && npm run build",
|
|
56
55
|
"check:all": "npm run check:code && npm run test",
|
|
57
56
|
"cleanup:processes": "bash ./scripts/cleanup-test-processes.sh",
|
|
@@ -71,7 +70,7 @@
|
|
|
71
70
|
"husky": "^9.1.7",
|
|
72
71
|
"knip": "^5.0.0",
|
|
73
72
|
"lint-staged": "^16.1.0",
|
|
74
|
-
"
|
|
73
|
+
"dpdm": "^4.0.0",
|
|
75
74
|
"tsc-alias": "^1.8.7",
|
|
76
75
|
"tsx": "^4.19.4",
|
|
77
76
|
"typescript": "^5.0.0",
|
|
@@ -79,7 +78,7 @@
|
|
|
79
78
|
"vitest": "^4.0.0"
|
|
80
79
|
},
|
|
81
80
|
"engines": {
|
|
82
|
-
"node": ">=
|
|
81
|
+
"node": ">=22"
|
|
83
82
|
},
|
|
84
83
|
"lint-staged": {
|
|
85
84
|
"src/**/*.{ts,tsx}": [
|