cursor-sdd 1.0.16 → 1.0.17

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/bin/setup.ts +2 -2
  2. package/package.json +1 -1
package/bin/setup.ts CHANGED
@@ -1,4 +1,4 @@
1
- #!/usr/bin/env node
1
+ #!/usr/bin/env npx tsx
2
2
  // @ts-nocheck
3
3
 
4
4
  const fs = require('fs');
@@ -8,7 +8,7 @@ const isForce = process.argv.includes('--force');
8
8
 
9
9
  // パッケージのルートディレクトリを取得
10
10
  const packageRoot = path.resolve(__dirname, '..');
11
- const sourceDir = path.join(packageRoot, 'new');
11
+ const sourceDir = path.join(packageRoot, 'now');
12
12
  const FOLDERS = ['commands', 'rules', 'templates'];
13
13
 
14
14
  // プロジェクトのルートを取得
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cursor-sdd",
3
- "version": "1.0.16",
3
+ "version": "1.0.17",
4
4
  "description": "Cursor SDD (Spec-Driven Development) - AI-powered spec templates, rules and commands for Cursor IDE",
5
5
  "bin": {
6
6
  "cursor-sdd": "bin/setup.ts"