-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.13 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.13 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
{
"name": "deepagents-cli-claude-skill",
"version": "0.1.4",
"description": "Deep Agents CLI skill for Claude — works with Claude Code, Claude Desktop, and claude.ai",
"type": "module",
"main": "dist/cli.js",
"bin": {
"deepagents-cli-claude-skill": "./dist/cli.js"
},
"files": [
"dist",
"templates"
],
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"prepublishOnly": "npm run build",
"typecheck": "tsc --noEmit"
},
"keywords": [
"deepagents",
"claude-code",
"claude",
"anthropic",
"skill",
"cli",
"langchain",
"ai-agents",
"deep-agents"
],
"author": {
"name": "GitMaxd",
"url": "https://github.com/Gitmaxd"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/Gitmaxd/deepagents-cli-claude-skill.git"
},
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=18"
},
"dependencies": {
"citty": "^0.1.6",
"fs-extra": "^11.3.3"
},
"devDependencies": {
"@types/fs-extra": "^11.0.4",
"@types/node": "^22.0.0",
"tsup": "^8.5.1",
"typescript": "^5.7.0"
}
}