@anytio/pspm 0.0.2 → 0.0.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.
package/package.json CHANGED
@@ -1,60 +1,66 @@
1
1
  {
2
- "name": "@anytio/pspm",
3
- "version": "0.0.2",
4
- "description": "CLI for managing private skill packages for Claude Code",
5
- "type": "module",
6
- "license": "SEE LICENSE IN LICENSE",
7
- "author": "PSPM <support@pspm.dev>",
8
- "repository": {
9
- "type": "git",
10
- "url": "git+https://github.com/anyt-io/pspm.git"
11
- },
12
- "homepage": "https://pspm.dev",
13
- "bugs": {
14
- "url": "https://github.com/anyt-io/pspm/issues"
15
- },
16
- "keywords": [
17
- "claude",
18
- "claude-code",
19
- "skills",
20
- "package-manager",
21
- "cli",
22
- "anthropic"
23
- ],
24
- "bin": {
25
- "pspm": "./dist/index.js"
26
- },
27
- "files": [
28
- "dist",
29
- "LICENSE"
30
- ],
31
- "exports": {
32
- ".": "./dist/index.js"
33
- },
34
- "dependencies": {
35
- "commander": "^14.0.2",
36
- "dotenv": "^17.2.3",
37
- "open": "^11.0.0",
38
- "semver": "^7.7.3"
39
- },
40
- "devDependencies": {
41
- "@types/node": "^25.0.9",
42
- "@types/semver": "^7.7.1",
43
- "tsup": "^8.5.1",
44
- "tsx": "^4.21.0",
45
- "typescript": "^5.9.3",
46
- "@repo/pspm-types": "0.0.1",
47
- "@repo/sdk": "0.0.1"
48
- },
49
- "scripts": {
50
- "dev": "tsx src/index.ts",
51
- "build": "tsup",
52
- "start": "node dist/index.js",
53
- "link": "pnpm build && pnpm link --global",
54
- "unlink": "pnpm unlink --global",
55
- "typecheck": "tsc --noEmit",
56
- "lint": "biome lint src",
57
- "check": "biome check src",
58
- "format": "biome format ./src --write"
59
- }
60
- }
2
+ "name": "@anytio/pspm",
3
+ "version": "0.0.3",
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>",
8
+ "repository": {
9
+ "type": "git",
10
+ "url": "git+https://github.com/anyt-io/pspm.git"
11
+ },
12
+ "homepage": "https://pspm.dev",
13
+ "bugs": {
14
+ "url": "https://github.com/anyt-io/pspm/issues"
15
+ },
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
+ "bin": {
30
+ "pspm": "./dist/index.js",
31
+ "pspm-local": "./dist/index.js"
32
+ },
33
+ "files": [
34
+ "dist",
35
+ "LICENSE"
36
+ ],
37
+ "exports": {
38
+ ".": "./dist/index.js"
39
+ },
40
+ "scripts": {
41
+ "dev": "tsx src/index.ts",
42
+ "build": "tsup",
43
+ "start": "node dist/index.js",
44
+ "link": "pnpm build && pnpm link --global",
45
+ "unlink": "pnpm unlink --global",
46
+ "typecheck": "tsc --noEmit",
47
+ "lint": "biome lint src",
48
+ "check": "biome check src",
49
+ "format": "biome format ./src --write"
50
+ },
51
+ "dependencies": {
52
+ "commander": "^14.0.2",
53
+ "dotenv": "^17.2.3",
54
+ "open": "^11.0.0",
55
+ "semver": "^7.7.3"
56
+ },
57
+ "devDependencies": {
58
+ "@repo/pspm-types": "workspace:*",
59
+ "@repo/sdk": "workspace:*",
60
+ "@types/node": "^25.0.9",
61
+ "@types/semver": "^7.7.1",
62
+ "tsup": "^8.5.1",
63
+ "tsx": "^4.21.0",
64
+ "typescript": "^5.9.3"
65
+ }
66
+ }