-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.09 KB
/
Copy pathpackage.json
File metadata and controls
51 lines (51 loc) · 1.09 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
{
"name": "claudeverse",
"version": "0.1.1",
"description": "One config. Every Claude interface. Connected.",
"type": "module",
"bin": {
"claudeverse": "./dist/bin/claudeverse.js"
},
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"test": "vitest run",
"test:watch": "vitest",
"start": "node dist/bin/claudeverse.js"
},
"keywords": [
"claude",
"anthropic",
"cli",
"config",
"sync"
],
"license": "MIT",
"files": [
"dist",
"templates"
],
"repository": {
"type": "git",
"url": "https://github.com/rudymartinezai/claudeverse.git"
},
"homepage": "https://github.com/rudymartinezai/claudeverse",
"bugs": "https://github.com/rudymartinezai/claudeverse/issues",
"engines": {
"node": ">=18"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.82.0",
"chalk": "^5.6.2",
"clipboardy": "^5.3.1",
"commander": "^14.0.3",
"js-yaml": "^4.1.1",
"ora": "^9.3.0"
},
"devDependencies": {
"@types/js-yaml": "^4.0.9",
"@types/node": "^25.5.2",
"typescript": "^6.0.2",
"vitest": "^4.1.2"
}
}