recur-skills 0.0.1 → 0.0.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.
@@ -0,0 +1,14 @@
1
+ {
2
+ "name": "recur-skills",
3
+ "owner": {
4
+ "name": "Recur",
5
+ "email": "hi@recur.tw"
6
+ },
7
+ "plugins": [
8
+ {
9
+ "name": "recur-skills",
10
+ "description": "Claude Code skills for integrating Recur - Taiwan's subscription payment platform",
11
+ "source": "."
12
+ }
13
+ ]
14
+ }
package/README.md CHANGED
@@ -7,7 +7,7 @@ Claude Code skills to help developers integrate [Recur](https://recur.tw) - Taiw
7
7
  ### Claude Code Plugin (Recommended)
8
8
 
9
9
  ```bash
10
- /plugin add recur-tw/skills
10
+ /plugin marketplace add recur-tw/skills
11
11
  ```
12
12
 
13
13
  ### npm CLI
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "recur-skills",
3
- "version": "0.0.1",
3
+ "version": "0.0.2",
4
4
  "description": "Claude Code skills for Recur - Taiwan's subscription payment platform",
5
5
  "keywords": [
6
6
  "recur",
@@ -40,6 +40,13 @@
40
40
  "skills",
41
41
  ".claude-plugin"
42
42
  ],
43
+ "scripts": {
44
+ "build": "tsup",
45
+ "dev": "tsup --watch",
46
+ "lint": "eslint src/",
47
+ "typecheck": "tsc --noEmit",
48
+ "prepublishOnly": "pnpm build"
49
+ },
43
50
  "dependencies": {
44
51
  "commander": "^12.1.0",
45
52
  "picocolors": "^1.1.1"
@@ -54,11 +61,5 @@
54
61
  },
55
62
  "publishConfig": {
56
63
  "access": "public"
57
- },
58
- "scripts": {
59
- "build": "tsup",
60
- "dev": "tsup --watch",
61
- "lint": "eslint src/",
62
- "typecheck": "tsc --noEmit"
63
64
  }
64
- }
65
+ }