forked from AGoldian/claudenv
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.21 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.21 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
{
"name": "claudenv",
"version": "1.2.5",
"description": "One command to integrate Claude Code into any project — installs /claudenv command for AI-powered documentation generation",
"type": "module",
"bin": {
"claudenv": "./bin/cli.js"
},
"main": "./src/index.js",
"exports": {
".": "./src/index.js"
},
"files": [
"bin",
"src",
"templates",
"scaffold",
"LICENSE"
],
"scripts": {
"test": "vitest run",
"test:watch": "vitest",
"prepublishOnly": "vitest run"
},
"engines": {
"node": ">=20"
},
"dependencies": {
"@inquirer/prompts": "^8.0.0",
"commander": "^14.0.0",
"ejs": "^4.0.0",
"glob": "^13.0.0",
"smol-toml": "^1.3.0"
},
"devDependencies": {
"vitest": "^4.0.0"
},
"keywords": [
"claude",
"claude-code",
"anthropic",
"documentation",
"generator",
"scaffold",
"CLAUDE.md",
"ai",
"developer-tools",
"cli"
],
"author": "AGoldian",
"repository": {
"type": "git",
"url": "git+https://github.com/AGoldian/claudenv.git"
},
"homepage": "https://github.com/AGoldian/claudenv#readme",
"bugs": {
"url": "https://github.com/AGoldian/claudenv/issues"
},
"license": "MIT"
}