@impulselab/directory 1.0.8 → 2.7.4

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 (4) hide show
  1. package/README.md +60 -120
  2. package/dist/index.js +1595 -0
  3. package/package.json +28 -20
  4. package/index.js +0 -666
package/package.json CHANGED
@@ -1,29 +1,37 @@
1
1
  {
2
2
  "name": "@impulselab/directory",
3
- "version": "1.0.8",
4
- "description": "Download and install Claude commands from Impulse Directory",
5
- "main": "index.js",
6
- "bin": {
7
- "directory": "./index.js"
8
- },
9
- "scripts": {
10
- "test": "node index.js --help",
11
- "predeploy": "chmod +x index.js",
12
- "deploy": "pnpm publish --access public --no-git-checks"
13
- },
14
- "keywords": [
15
- "claude",
16
- "commands",
17
- "impulse",
18
- "npx"
19
- ],
20
- "author": "Impulse Lab <team@impulselab.ai> (https://impulselab.ai)",
21
- "homepage": "https://impulselab.ai",
3
+ "version": "2.7.4",
4
+ "description": "Sync versioned skills, commands and agent configs across Claude Code, Cursor and Codex",
22
5
  "license": "MIT",
6
+ "type": "module",
23
7
  "engines": {
24
- "node": ">=14"
8
+ "node": ">=20"
9
+ },
10
+ "bin": {
11
+ "impulse": "dist/index.js",
12
+ "directory": "dist/index.js"
25
13
  },
14
+ "files": [
15
+ "dist"
16
+ ],
26
17
  "publishConfig": {
27
18
  "access": "public"
19
+ },
20
+ "scripts": {
21
+ "build": "tsup",
22
+ "dev": "tsup --watch",
23
+ "typecheck": "tsc --noEmit"
24
+ },
25
+ "dependencies": {
26
+ "@clack/prompts": "^1.7.0",
27
+ "commander": "^14.0.2",
28
+ "picocolors": "^1.1.1",
29
+ "zod": "^4.0.5"
30
+ },
31
+ "devDependencies": {
32
+ "@impulselab/shared": "workspace:*",
33
+ "@types/node": "^20.19.43",
34
+ "tsup": "^8.5.1",
35
+ "typescript": "^5.9.3"
28
36
  }
29
37
  }