-
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.41 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.41 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": "@readme/cli",
"version": "0.0.28",
"description": "The ReadMe CLI",
"type": "module",
"bin": {
"readme": "./bin/readme.js",
"readme_": "./bin/readme.js"
},
"exports": {
".": "./src/index.js",
"./commands/lint": "./src/commands/lint.js",
"./commands/oas-sync": "./src/commands/oas-sync.js",
"./commands/oas-validate": "./src/commands/oas-validate.js",
"./commands/import": "./src/commands/import.js",
"./commands/pretty": "./src/commands/pretty.js",
"./prompts": "./src/prompts/index.js",
"./package.json": "./package.json"
},
"files": [
"bin",
"src",
"vendor",
"README.md"
],
"scripts": {
"start": "node bin/readme.js",
"test": "echo \"No tests yet\""
},
"engines": {
"node": ">=18"
},
"keywords": [
"readme",
"cli",
"docs"
],
"license": "ISC",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
},
"dependencies": {
"@anthropic-ai/claude-agent-sdk": "^0.2.114",
"@readme/markdown": "^13.3.0",
"@readmeio/git-format": "readmeio/git-format",
"ajv": "^8.18.0",
"chalk": "^5.4.1",
"cli-spinners": "^3.4.0",
"commander": "^13.1.0",
"gray-matter": "^4.0.3",
"log-update": "^8.0.0",
"next": "^15.0.0",
"oas-normalize": "^15.7.1",
"ora": "^9.3.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"update-notifier": "^7.3.1"
}
}