-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
58 lines (58 loc) · 1.43 KB
/
package.json
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
{
"name": "micro-docgen",
"version": "0.3.5",
"description": "Quick and easy documentation for typescript projects.",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist",
"bin"
],
"bin": {
"micro-docgen": "./bin/index.js",
"docgen": "./bin/index.js"
},
"scripts": {
"format": "prettier --write \"./{src,examples,docs,scripts}/**/*.{js,ts,md,mdx}\"",
"docs": "tsx ./scripts/generate.ts",
"example:md": "cd ./examples/markdown && tsx generator.ts",
"example:json": "cd ./examples/awesome-widgets && tsx generator.ts",
"build": "tsc",
"prepublishOnly": "yarn build && yarn docs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/neplextech/micro-docgen.git"
},
"keywords": [
"docgen",
"docs",
"jsdoc",
"typescript",
"documentation",
"api",
"json",
"typedoc"
],
"author": "twlite <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/neplextech/micro-docgen/issues"
},
"homepage": "https://github.com/neplextech/micro-docgen#readme",
"packageManager": "[email protected]",
"dependencies": {
"commander": "^12.1.0",
"common-tags": "^1.8.2",
"tmp": "^0.2.3",
"typedoc": "^0.27.4",
"typescript": "^5.7.2"
},
"devDependencies": {
"@types/common-tags": "^1",
"@types/node": "^22.10.2",
"@types/tmp": "^0",
"prettier": "^3.4.2",
"tsx": "^4.19.2"
}
}