@anytio/pspm 0.7.1 → 0.7.2
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 +6 -0
- package/package.json +5 -5
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,12 @@ All notable changes to the PSPM CLI 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
|
+
## [0.7.2] - 2026-03-02
|
|
9
|
+
|
|
10
|
+
### Fixed
|
|
11
|
+
|
|
12
|
+
- **Fix npm install failure**: Moved `@repo/pspm-types` and `@repo/skill-registry` from `dependencies` to `devDependencies` to prevent npm from trying to install workspace-only packages from the public registry
|
|
13
|
+
|
|
8
14
|
## [0.7.1] - 2026-03-02
|
|
9
15
|
|
|
10
16
|
### Added
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@anytio/pspm",
|
|
3
|
-
"version": "0.7.
|
|
3
|
+
"version": "0.7.2",
|
|
4
4
|
"description": "CLI for PSPM - Prompt Skill Package Manager for AI coding agents",
|
|
5
5
|
"author": "anyt.io",
|
|
6
6
|
"license": "Artistic-2.0",
|
|
@@ -42,9 +42,7 @@
|
|
|
42
42
|
"ignore": "^7.0.5",
|
|
43
43
|
"ini": "^6.0.0",
|
|
44
44
|
"open": "^11.0.0",
|
|
45
|
-
"semver": "^7.7.4"
|
|
46
|
-
"@repo/pspm-types": "0.0.1",
|
|
47
|
-
"@repo/skill-registry": "0.0.1"
|
|
45
|
+
"semver": "^7.7.4"
|
|
48
46
|
},
|
|
49
47
|
"devDependencies": {
|
|
50
48
|
"@biomejs/biome": "2.3.14",
|
|
@@ -54,7 +52,9 @@
|
|
|
54
52
|
"tsup": "^8.5.1",
|
|
55
53
|
"tsx": "^4.21.0",
|
|
56
54
|
"typescript": "^5.9.3",
|
|
57
|
-
"vitest": "^4.0.18"
|
|
55
|
+
"vitest": "^4.0.18",
|
|
56
|
+
"@repo/skill-registry": "0.0.1",
|
|
57
|
+
"@repo/pspm-types": "0.0.1"
|
|
58
58
|
},
|
|
59
59
|
"engines": {
|
|
60
60
|
"node": ">=20.0.0"
|