forked from rar-file/claude-rpc
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.1 KB
/
Copy pathpackage.json
File metadata and controls
74 lines (74 loc) · 2.1 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "claude-rpc",
"version": "1.3.1",
"description": "Discord Rich Presence for Claude Code — live model, project, tokens, and lifetime stats driven by Claude Code's hook system.",
"type": "module",
"license": "MIT",
"author": "Archer Simmons",
"homepage": "https://claude-rpc.com",
"repository": {
"type": "git",
"url": "git+https://github.com/rar-file/claude-rpc.git"
},
"bugs": {
"url": "https://github.com/rar-file/claude-rpc/issues"
},
"bin": {
"claude-rpc": "./bin/claude-rpc.js"
},
"scripts": {
"start": "node ./src/daemon.js",
"setup": "node ./src/cli.js setup",
"status": "node ./src/cli.js status",
"stop": "node ./src/cli.js stop",
"hook": "node ./src/hook.js",
"serve": "node ./src/cli.js serve",
"scan": "node ./src/cli.js scan",
"insights": "node ./src/cli.js insights",
"badge": "node ./src/cli.js badge",
"dashboard": "npm --prefix dashboard start",
"build:exe": "node ./scripts/build-exe.js",
"prep:dashboard": "node ./scripts/prep-dashboard.js",
"dist:mac": "npm run build:exe && npm run prep:dashboard && npm --prefix dashboard run dist:mac",
"dist:win": "npm run build:exe && npm run prep:dashboard && npm --prefix dashboard run dist:win",
"test": "node --test test/*.test.js",
"lint": "eslint src test vscode-extension",
"format": "prettier --write \"src/**/*.js\" \"test/**/*.js\"",
"format:check": "prettier --check \"src/**/*.js\" \"test/**/*.js\"",
"typecheck": "tsc -p jsconfig.json"
},
"dependencies": {},
"devDependencies": {
"@eslint/js": "^10.0.1",
"esbuild": "^0.24.0",
"eslint": "^10.4.1",
"globals": "^17.6.0",
"postject": "^1.0.0-alpha.6",
"prettier": "^3.8.3",
"typescript": "^6.0.3"
},
"engines": {
"node": ">=18"
},
"publishConfig": {
"access": "public",
"provenance": true
},
"keywords": [
"claude",
"claude-code",
"discord",
"discord-rpc",
"rich-presence",
"anthropic",
"cli"
],
"files": [
"bin",
"src",
"config.example.json",
"LICENSE",
"README.md",
"SECURITY.md"
]
}