-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.07 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.07 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
{
"name": "@suchipi/dtsmd",
"version": "1.4.0",
"description": "Generate Markdown from Typescript .d.ts file",
"main": "dist/index.js",
"bin": {
"dtsmd": "dist/cli.js"
},
"scripts": {
"test": "vitest",
"build": "./build.sh"
},
"keywords": [
"typescript",
"markdown",
"generator",
"documentation",
".d.ts",
"docgen"
],
"author": "Lily Skye",
"repository": {
"type": "git",
"url": "git+https://github.com/suchipi/dtsmd.git"
},
"license": "MIT",
"devDependencies": {
"@suchipi/macaroni": "^0.3.0",
"@types/debug": "^4.1.12",
"@types/node": "^24.3.0",
"first-base": "^1.5.2",
"glomp": "^3.1.1",
"typescript": "^5.9.2",
"vitest": "^3.2.4"
},
"dependencies": {
"@suchipi/traverse": "^5.1.1",
"clefairy": "^2.1.0",
"debug": "^4.4.1",
"equivalent-exchange": "^3.1.1",
"json5": "^2.2.3",
"kleur": "^4.1.5",
"nice-path": "^3.1.0",
"prettier": "^3.6.2",
"pretty-print-ast": "^1.0.1",
"yaml": "^2.8.1"
},
"publishConfig": {
"access": "public"
}
}