@anytio/pspm 0.1.1 → 0.2.0

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/package.json CHANGED
@@ -1,58 +1,60 @@
1
1
  {
2
2
  "name": "@anytio/pspm",
3
- "version": "0.1.1",
4
- "description": "CLI for managing prompt skill packages across AI coding agents",
5
- "type": "module",
6
- "license": "SEE LICENSE IN LICENSE",
7
- "author": "PSPM <support@pspm.dev>",
3
+ "version": "0.2.0",
4
+ "description": "CLI for PSPM - Prompt Skill Package Manager for AI coding agents",
5
+ "author": "anyt.io",
6
+ "license": "Artistic-2.0",
7
+ "keywords": [
8
+ "prompt",
9
+ "skill",
10
+ "package-manager",
11
+ "ai",
12
+ "claude",
13
+ "claude-code",
14
+ "coding-agent"
15
+ ],
8
16
  "repository": {
9
17
  "type": "git",
10
- "url": "git+https://github.com/anyt-io/pspm.git"
18
+ "url": "https://github.com/anyt-io/pspm-cli"
11
19
  },
12
20
  "homepage": "https://pspm.dev",
13
21
  "bugs": {
14
- "url": "https://github.com/anyt-io/pspm/issues"
22
+ "url": "https://github.com/anyt-io/pspm-cli/issues"
23
+ },
24
+ "type": "module",
25
+ "exports": {
26
+ ".": "./dist/index.js"
15
27
  },
16
- "keywords": [
17
- "skills",
18
- "package-manager",
19
- "cli",
20
- "ai-agent",
21
- "prompt-skills",
22
- "claude",
23
- "claude-code",
24
- "cursor",
25
- "windsurf",
26
- "anthropic",
27
- "skill-md"
28
- ],
29
28
  "bin": {
30
- "pspm": "./dist/index.js",
31
- "pspm-local": "./dist/index.js"
29
+ "pspm": "./bin/pspm.js"
32
30
  },
33
31
  "files": [
32
+ "bin",
34
33
  "dist",
34
+ "README.md",
35
+ "CHANGELOG.md",
36
+ "CLI_GUIDE.md",
35
37
  "LICENSE"
36
38
  ],
37
- "exports": {
38
- ".": "./dist/index.js"
39
- },
40
39
  "dependencies": {
41
- "@inquirer/prompts": "^8.2.0",
42
- "commander": "^14.0.2",
43
- "ini": "^6.0.0",
44
- "open": "^11.0.0",
45
- "semver": "^7.7.3"
40
+ "@inquirer/prompts": "^7.4.0",
41
+ "commander": "^14.0.0",
42
+ "ini": "^5.0.0",
43
+ "open": "^10.2.0",
44
+ "semver": "^7.7.2"
46
45
  },
47
46
  "devDependencies": {
47
+ "@biomejs/biome": "^2.3.12",
48
48
  "@types/ini": "^4.1.1",
49
- "@types/node": "^25.0.9",
50
- "@types/semver": "^7.7.1",
51
- "tsup": "^8.5.1",
52
- "tsx": "^4.21.0",
53
- "typescript": "^5.9.3",
54
- "@repo/pspm-types": "0.0.1",
55
- "@repo/sdk": "0.0.1"
49
+ "@types/node": "^22.15.3",
50
+ "@types/semver": "^7.7.0",
51
+ "knip": "^5.82.1",
52
+ "tsup": "^8.5.0",
53
+ "tsx": "^4.19.4",
54
+ "typescript": "^5.8.3"
55
+ },
56
+ "engines": {
57
+ "node": ">=20.0.0"
56
58
  },
57
59
  "scripts": {
58
60
  "dev": "tsx src/index.ts",
@@ -63,6 +65,7 @@
63
65
  "typecheck": "tsc --noEmit",
64
66
  "lint": "biome lint src",
65
67
  "check": "biome check src",
66
- "format": "biome format ./src --write"
68
+ "format": "biome format ./src --write",
69
+ "knip": "knip"
67
70
  }
68
71
  }