-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
69 lines (69 loc) · 2.09 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
59
60
61
62
63
64
65
66
67
68
69
{
"name": "tsdoc-markdown",
"version": "1.1.1",
"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 .",
"lint": "eslint --max-warnings 0 .",
"build": "node rmdir.mjs && node esbuild.mjs && npm run ts-declaration",
"contributors:add": "all-contributors add",
"contributors:check": "all-contributors check",
"contributors:generate": "all-contributors generate",
"ts-declaration": "tsc --emitDeclarationOnly --outDir dist/types",
"test": "jest",
"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": {
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.16.0",
"@types/jest": "^29.5.14",
"@types/node": "^22.10.1",
"@typescript-eslint/eslint-plugin": "^8.17.0",
"all-contributors-cli": "^6.26.1",
"esbuild": "^0.24.0",
"eslint": "^8.57.1",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^7.2.1",
"jest": "^29.7.0",
"prettier": "^3.4.2",
"prettier-plugin-organize-imports": "^4.1.0",
"ts-jest": "^29.2.5"
},
"keywords": [
"jsdoc",
"markdown",
"api",
"generator",
"typescript",
"documentation",
"doc-generator",
"tsdoc",
"tsdoc-parser"
],
"peerDependencies": {
"typescript": "^5"
}
}