-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 860 Bytes
/
Copy pathpackage.json
File metadata and controls
36 lines (36 loc) · 860 Bytes
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
{
"name": "autoreadme",
"version": "0.1.0",
"description": "Auto-generate README.md from your project structure",
"type": "module",
"bin": {
"autoreadme": "./dist/index.js"
},
"scripts": {
"dev": "ts-node src/index.ts",
"build": "tsup src/index.ts --format esm --out-dir dist --dts --minify --sourcemap",
"start": "node dist/index.js",
"test:local": "node dist/index.js generate",
"test": "node dist/index.js generate && npm run build"
},
"keywords": [
"readme",
"generator",
"cli",
"automation"
],
"author": "",
"license": "MIT",
"dependencies": {
"commander": "^12.1.0",
"fs-extra": "^11.2.0",
"globby": "^14.0.1",
"handlebars": "^4.7.8"
},
"devDependencies": {
"@types/node": "^22.7.4",
"ts-node": "^10.9.2",
"tsup": "^8.1.0",
"typescript": "^5.6.3"
}
}