-
Notifications
You must be signed in to change notification settings - Fork 94
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.21 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.21 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
{
"name": "moxygen",
"version": "2.1.3",
"description": "Doxygen XML to Markdown converter",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"bin": {
"moxygen": "./dist/cli.js"
},
"files": [
"dist",
"templates"
],
"scripts": {
"build": "tsc",
"prepare": "npm run build",
"dev": "tsc --watch",
"test": "vitest run",
"test:watch": "vitest",
"lint": "tsc --noEmit",
"prepublishOnly": "npm run build",
"example": "npm run build && node dist/cli.js --groups --pages --anchors --output=example/doc/api-%s.md example/xml"
},
"repository": {
"type": "git",
"url": "https://github.com/sourcey/moxygen.git"
},
"keywords": [
"doxygen",
"markdown",
"documentation",
"generator",
"api-docs"
],
"author": "Kam Low",
"license": "MIT",
"engines": {
"node": ">=20"
},
"dependencies": {
"commander": "^13.1.0",
"handlebars": "^4.7.9",
"xml2js": "^0.6.2"
},
"devDependencies": {
"@types/node": "^20.17.0",
"@types/xml2js": "^0.4.14",
"typescript": "^5.7.0",
"vitest": "^3.0.0"
}
}