@simplysm/claude 13.0.16 → 13.0.20

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.
Files changed (2) hide show
  1. package/README.md +1 -1
  2. package/package.json +4 -4
package/README.md CHANGED
@@ -358,7 +358,7 @@ Runs automatically on `pnpm install` / `npm install`. Copies `sd-*` assets from
358
358
 
359
359
  Runs before `npm pack` / `npm publish` (via `prepack` script). Syncs `sd-*` assets from the project root's `.claude/` directory into the package's `claude/` directory for distribution.
360
360
 
361
- ## Notes
361
+ ## Caveats
362
362
 
363
363
  - If using `pnpm install --ignore-scripts`, the postinstall won't run
364
364
  - If using `onlyBuiltDependencies` in `pnpm-workspace.yaml`, add `@simplysm/claude` to the list
package/package.json CHANGED
@@ -1,20 +1,20 @@
1
1
  {
2
2
  "name": "@simplysm/claude",
3
- "sideEffects": false,
4
- "version": "13.0.16",
3
+ "version": "13.0.20",
5
4
  "description": "Simplysm Claude Code skills/agents — auto-installs via postinstall",
6
5
  "author": "김석래",
6
+ "license": "Apache-2.0",
7
7
  "repository": {
8
8
  "type": "git",
9
9
  "url": "https://github.com/kslhunter/simplysm.git",
10
10
  "directory": "packages/claude"
11
11
  },
12
- "license": "Apache-2.0",
12
+ "type": "module",
13
13
  "files": [
14
14
  "scripts",
15
15
  "claude"
16
16
  ],
17
- "type": "module",
17
+ "sideEffects": false,
18
18
  "scripts": {
19
19
  "postinstall": "node scripts/postinstall.mjs"
20
20
  }