-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
86 lines (86 loc) · 2.44 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "simple-tsdoc",
"version": "2.0.6",
"description": "A simple cli to generate markdown documentations from *.d.ts files.",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"bin": {
"simple-tsdoc": "./bin/index.mjs"
},
"scripts": {
"dev": "rimraf ./dist && tsup --watch",
"build": "rimraf ./dist && tsup",
"test": "vitest --globals",
"build:example": "tsx ./scripts/buildExample.ts",
"build:allExamples": "tsx ./scripts/buildAllExamples.ts",
"lint": "eslint src/**/*.ts --cache --quiet",
"release": "changeset && changeset version && pnpm build && pnpm extra-api && pnpm build:allExamples && npm publish",
"extra-api": "simple-tsdoc ./dist/index.d.ts -o ./API.md --banner \"# simple-tsdoc API\""
},
"keywords": [
"tsdoc",
"markdown",
"api generator",
"documentation"
],
"author": "",
"license": "MIT",
"dependencies": {
"@microsoft/api-extractor": "^7.33.7",
"@microsoft/api-extractor-model": "^7.25.3",
"@microsoft/tsdoc": "^0.14.2",
"@microsoft/tsdoc-config": "^0.16.2",
"cac": "^6.7.14",
"fs-extra": "^11.1.0",
"picocolors": "^1.0.0",
"tmp": "^0.2.1"
},
"devDependencies": {
"@changesets/cli": "^2.26.0",
"@types/file-entry-cache": "^5.0.2",
"@types/fs-extra": "^9.0.13",
"@types/i18n": "^0.13.6",
"@types/node": "^18.11.18",
"@types/tmp": "^0.2.3",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"bumpp": "^8.2.1",
"eslint": "^8.0.1",
"eslint-config-prettier": "^8.6.0",
"eslint-config-standard-with-typescript": "^26.0.0",
"eslint-define-config": "^1.13.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-n": "^15.0.0",
"eslint-plugin-promise": "^6.0.0",
"execa": "^6.1.0",
"fast-glob": "^3.2.12",
"file-entry-cache": "^6.0.1",
"find-up": "^6.3.0",
"lint-staged": "^13.1.0",
"prettier": "^2.8.1",
"pretty-format": "^29.3.1",
"rimraf": "^3.0.2",
"simple-git-hooks": "^2.8.1",
"tsup": "^6.5.0",
"tsx": "^3.12.1",
"typescript": "*",
"vitest": "^0.26.2"
},
"sideEffects": false,
"files": [
"bin",
"dist",
"locales"
],
"homepage": "https://github.com/xiaosen7/simple-tsdoc",
"repository": {
"type": "github",
"url": "https://github.com/xiaosen7/simple-tsdoc"
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
},
"lint-staged": {
"**/*.ts": "eslint --fix"
}
}