@claudecash/cli 0.1.0 → 0.1.1

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.
package/dist/cli.js CHANGED
@@ -49,7 +49,7 @@ async function main() {
49
49
  // Spawn claude with remaining args
50
50
  const claude = spawn('claude', claudeArgs, {
51
51
  stdio: 'inherit',
52
- shell: true,
52
+ shell: false,
53
53
  });
54
54
  // When claude exits, show ad + report impression
55
55
  claude.on('close', async () => {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@claudecash/cli",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "ClaudeCash CLI — earn money while Claude thinks",
5
5
  "main": "dist/index.js",
6
6
  "bin": {
@@ -11,7 +11,13 @@
11
11
  "dev": "tsc --watch",
12
12
  "prepublishOnly": "npm run build"
13
13
  },
14
- "keywords": ["claude", "ai", "monetize", "ads", "developer-tools"],
14
+ "keywords": [
15
+ "claude",
16
+ "ai",
17
+ "monetize",
18
+ "ads",
19
+ "developer-tools"
20
+ ],
15
21
  "license": "MIT",
16
22
  "dependencies": {
17
23
  "chalk": "^5.3.0",
package/src/cli.ts CHANGED
@@ -56,7 +56,7 @@ async function main() {
56
56
  // Spawn claude with remaining args
57
57
  const claude = spawn('claude', claudeArgs, {
58
58
  stdio: 'inherit',
59
- shell: true,
59
+ shell: false,
60
60
  })
61
61
 
62
62
  // When claude exits, show ad + report impression