-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.57 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.57 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "claude-remote-yolo",
"version": "0.1.2",
"description": "Claude CLI wrapper for remote-control bypass mode with persisted safe or yolo preferences.",
"license": "MIT",
"packageManager": "[email protected]",
"repository": {
"type": "git",
"url": "git+https://github.com/hmmhmmhm/claude-remote-yolo.git"
},
"homepage": "https://github.com/hmmhmmhm/claude-remote-yolo#readme",
"bugs": {
"url": "https://github.com/hmmhmmhm/claude-remote-yolo/issues"
},
"engines": {
"node": ">=20"
},
"publishConfig": {
"access": "public"
},
"bin": {
"claude-remote-yolo": "dist/bin.js"
},
"files": [
"dist"
],
"scripts": {
"build": "tsup src/bin.ts --format cjs --target node20 --out-dir dist --clean",
"check": "pnpm run check:file-lines && pnpm run lint && pnpm run test && pnpm run build",
"check:file-lines": "node tools/check-file-lines.mjs",
"lint": "eslint . --max-warnings 0",
"prepare": "simple-git-hooks && pnpm run build",
"prepublishOnly": "pnpm run check",
"start": "node dist/bin.js",
"test": "vitest run --coverage"
},
"keywords": [
"cli",
"typescript",
"claude",
"remote-control",
"permissions"
],
"devDependencies": {
"@eslint/js": "^9.23.0",
"@types/node": "^24.6.0",
"@vitest/coverage-v8": "^3.2.4",
"eslint": "^9.23.0",
"globals": "^16.0.0",
"simple-git-hooks": "^2.13.0",
"tsup": "^8.5.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.28.0",
"vitest": "^3.2.4"
},
"simple-git-hooks": {
"pre-commit": "pnpm check"
}
}