-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 879 Bytes
/
package.json
File metadata and controls
46 lines (46 loc) · 879 Bytes
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
{
"name": "types-not-docs",
"version": "0.1.0",
"description": "Generate markdown documentation from TypeScript types",
"main": "dist/cli.js",
"bin": {
"types-not-docs": "./bin/types-not-docs"
},
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"prepublishOnly": "npm run build"
},
"keywords": [
"typescript",
"documentation",
"markdown",
"types",
"cli",
"api-reference",
"sdk"
],
"author": "",
"license": "MIT",
"type": "commonjs",
"engines": {
"node": ">=18"
},
"files": [
"dist",
"bin"
],
"repository": {
"type": "git",
"url": "https://github.com/your-username/types-not-docs.git"
},
"dependencies": {
"commander": "^14.0.3",
"glob": "^13.0.3",
"ts-morph": "^27.0.2"
},
"devDependencies": {
"@types/node": "^25.2.3",
"typescript": "^5.9.3"
}
}