-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
100 lines (100 loc) · 2.77 KB
/
package.json
File metadata and controls
100 lines (100 loc) · 2.77 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "mint-tsdocs",
"version": "0.0.8",
"description": "Generate Mintlify-compatible MDX code reference from TypeScript.",
"author": "svallory",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/svallory/mintlify-tsdocs.git"
},
"homepage": "https://github.com/svallory/mintlify-tsdocs#readme",
"bugs": {
"url": "https://github.com/svallory/mintlify-tsdocs/issues"
},
"keywords": [
"mintlify",
"documentation",
"typescript",
"tsdoc",
"api-extractor",
"mdx",
"api-documentation",
"docs-generator"
],
"engines": {
"node": ">=18.0.0"
},
"packageManager": "[email protected]",
"files": [
"lib/",
"bin/",
"snippets/"
],
"scripts": {
"build": "tsc && cp -r src/schemas lib/ && cp -r src/templates/defaults lib/templates/ && cp src/templates/README.md lib/templates/ && cp -r snippets lib/",
"clean": "rm -rf lib",
"rebuild": "bun run clean && bun run build",
"docs": "node ./bin/mint-tsdocs",
"lint": "eslint src",
"lint:fix": "eslint src --fix",
"test": "bun test",
"test:watch": "bun test --watch",
"test:coverage": "bun test --coverage",
"postpublish": "bash scripts/publish-alias.sh"
},
"bin": {
"mint-tsdocs": "./bin/mint-tsdocs",
"mintlify-tsdocs": "./bin/mint-tsdocs"
},
"main": "lib/index.js",
"types": "lib/index.d.ts",
"dependencies": {
"@clack/prompts": "^0.11.0",
"@microsoft/api-extractor": "^7.55.1",
"@microsoft/api-extractor-model": "^7.32.0",
"@microsoft/tsdoc": "^0.16.0",
"@mintlify/components": "^0.3.15",
"@rushstack/node-core-library": "^5.18.0",
"@rushstack/terminal": "^0.19.3",
"@rushstack/ts-command-line": "^5.1.3",
"chalk": "^5.6.2",
"cli-table3": "^0.6.5",
"clsx": "^2.1.1",
"cosmiconfig": "^9.0.0",
"debug": "^4.4.3",
"ejs": "^3.1.10",
"is-unicode-supported": "^2.1.0",
"liquidjs": "^10.24.0",
"minimatch": "^10.1.1",
"react": "18",
"resolve": "~1.22.11"
},
"peerDependencies": {
"eslint": ">=8.0.0",
"eslint-plugin-tsdoc": ">=0.5.0",
"@typescript-eslint/parser": ">=6.0.0"
},
"peerDependenciesMeta": {
"eslint": { "optional": true },
"eslint-plugin-tsdoc": { "optional": true },
"@typescript-eslint/parser": { "optional": true }
},
"devDependencies": {
"@types/debug": "^4.1.12",
"@types/ejs": "^3.1.5",
"@types/minimatch": "^6.0.0",
"@types/node": "^18.19.130",
"@types/react": "18",
"@types/resolve": "1.20.2",
"@typescript-eslint/parser": "^8.48.0",
"@vitest/coverage-v8": "^4.0.13",
"@vitest/ui": "^4.0.13",
"eslint": "^9.39.1",
"eslint-plugin-tsdoc": "^0.5.0",
"happy-dom": "^20.0.10",
"type-fest": "^5.2.0",
"typescript": "^5.9.3",
"vitest": "^4.0.13"
}
}