-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.9 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.9 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
61
62
63
64
{
"name": "tsdoc-markdown",
"version": "1.5.0",
"description": "Generates markdown documentation from TypeScript source code.",
"author": "David Dal Busco",
"license": "MIT",
"main": "dist/cjs/index.cjs.js",
"module": "dist/esm/index.mjs",
"types": "dist/types/index.d.ts",
"files": [
"dist",
"bin",
"README.md",
"LICENSE"
],
"bin": {
"tsdoc": "bin/index.js"
},
"scripts": {
"format": "prettier --write .",
"format:check": "prettier --check .",
"lint": "oxlint",
"lint:fix": "oxlint --fix",
"build": "node rmdir.mjs && node esbuild.mjs && npm run ts-declaration",
"prepare": "npm run build",
"contributors:add": "all-contributors add",
"contributors:check": "all-contributors check",
"contributors:generate": "all-contributors generate",
"ts-declaration": "tsc --emitDeclarationOnly --outDir dist/types",
"test": "vitest",
"start": "node rmdir.mjs && node esbuild.mjs && node bin/index.js --src=src/test/mock.ts --dest=src/test/mock.md --repo=https://github.com/peterpeterparker/tsdoc-markdown --types",
"docs": "node rmdir.mjs && node esbuild.mjs && node bin/index.js --src=src/lib/* --repo=https://github.com/peterpeterparker/tsdoc-markdown && prettier --write ./README.md"
},
"repository": {
"type": "git",
"url": "git+https://github.com/peterpeterparker/tsdoc-markdown.git"
},
"bugs": {
"url": "https://github.com/peterpeterparker/tsdoc-markdown"
},
"devDependencies": {
"@types/node": "^24.2.0",
"all-contributors-cli": "^6.26.1",
"esbuild": "^0.28.0",
"oxlint": "^1.62.0",
"prettier": "^3.8.3",
"prettier-plugin-organize-imports": "^4.3.0",
"vitest": "^4.1.5"
},
"keywords": [
"jsdoc",
"markdown",
"api",
"generator",
"typescript",
"documentation",
"doc-generator",
"tsdoc",
"tsdoc-parser"
],
"peerDependencies": {
"typescript": "^5 || ^6"
}
}