@impulselab/directory 1.1.0 → 2.7.5

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 +1615 -0
  3. package/package.json +27 -19
  4. package/index.js +0 -1048
package/package.json CHANGED
@@ -1,29 +1,37 @@
1
1
  {
2
2
  "name": "@impulselab/directory",
3
- "version": "1.1.0",
4
- "description": "Download and install Claude commands from Impulse Directory",
5
- "main": "index.js",
6
- "bin": {
7
- "directory": "./index.js"
8
- },
9
- "keywords": [
10
- "claude",
11
- "commands",
12
- "impulse",
13
- "npx"
14
- ],
15
- "author": "Impulse Lab <team@impulselab.ai> (https://impulselab.ai)",
16
- "homepage": "https://impulselab.ai",
3
+ "version": "2.7.5",
4
+ "description": "Sync versioned skills, commands and agent configs across Claude Code, Cursor and Codex",
17
5
  "license": "MIT",
6
+ "type": "module",
18
7
  "engines": {
19
- "node": ">=14"
8
+ "node": ">=20"
9
+ },
10
+ "bin": {
11
+ "impulse": "dist/index.js",
12
+ "directory": "dist/index.js"
20
13
  },
14
+ "files": [
15
+ "dist"
16
+ ],
21
17
  "publishConfig": {
22
18
  "access": "public"
23
19
  },
24
20
  "scripts": {
25
- "test": "node index.js --help",
26
- "predeploy": "chmod +x index.js",
27
- "deploy": "pnpm publish --access public --no-git-checks"
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
+ }