-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
103 lines (103 loc) · 3.51 KB
/
package.json
File metadata and controls
103 lines (103 loc) · 3.51 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
101
102
103
{
"name": "@xpack/doxygen2docusaurus",
"version": "2.0.0",
"description": "A Node.js CLI application to convert Doxygen XML files into Docusaurus documentation",
"type": "module",
"main": "./dist/index.js",
"typings": "./dist/doxygen2docusaurus.d.ts",
"bin": {
"doxygen2docusaurus": "./bin/doxygen2docusaurus.js"
},
"files": [
"dist/",
"templates/"
],
"keywords": [
"docusaurus",
"doxygen",
"cli"
],
"scripts": {
"generate-top-commons": "bash node_modules/@xpack/npm-packages-helper/maintenance-scripts/generate-top-commons.sh --xpack",
"api-extractor": "api-extractor run --local --verbose",
"prepare": "del-cli dist && npm run prettier && npm run lint && npm run compile && npm run api-extractor",
"compile-watch": "tsc --build --verbose --watch src",
"compile": "tsc --build --verbose src",
"prettier": "prettier src --write",
"fix": "eslint --fix src",
"dev-cycle": "npm run fix && npm run compile && npm run test",
"npm-install": "npm install",
"npm-link-helpers": "npm link @xpack/npm-packages-helper @xpack/docusaurus-template-liquid",
"npm-link": "npm link",
"npm-outdated": "npm outdated",
"npm-update": "npm update",
"npm-pack": "npm pack",
"npm-version-patch": "npm version patch",
"npm-version-minor": "npm version minor",
"postversion": "git push origin --all && git push origin --tags",
"git-log": "git log --pretty='%cd * %h %s' --date=short",
"lint": "eslint src",
"test": "echo 'No tests defined'",
"prepublishOnly": "npm run lint && npm run test",
"postpublish": "git push origin --follow-tags",
"clean": "del-cli dist cjs 'tests/**/cjs' 'src/**/*.d.ts' 'src/**/*.d.ts.map' 'src/**/*.js' 'src/**/*.js.map' 'tests/**/*.d.ts' 'tests/**/*.d.ts.map' 'tests/**/*.js' 'tests/**/*.js.map' '**/tsconfig.tsbuildinfo' .nyc_output coverage",
"deep-clean": "npm run clean && rm -rf node_modules package-lock.json",
"dumpconf": "env | sort | uniq",
"show-versions": "echo $(which node) $(node --version) && echo $(which npm) $(npm --version)"
},
"repository": {
"type": "git",
"url": "git+https://github.com/xpack/doxygen2docusaurus-cli-ts.git"
},
"author": {
"name": "Liviu Ionescu",
"email": "ilg@livius.net",
"url": "https://github.com/ilg-ul"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/xpack/doxygen2docusaurus-cli-ts/issues"
},
"homepage": "https://xpack.github.io/doxygen2docusaurus/",
"homepagePreview": "https://xpack.github.io/doxygen2docusaurus-cli-ts/",
"dependencies": {
"commander": "^14.0.0",
"fast-xml-parser": "^5.2.5"
},
"devDependencies": {
"@microsoft/api-extractor": "^7.52.8",
"@tsconfig/node20": "^20.1.6",
"@types/node": "^24.0.14",
"del-cli": "^6.0.0",
"eslint": "^9.31.0",
"eslint-config-prettier": "^10.1.8",
"fs-extra": "^11.3.0",
"json": "^11.0.0",
"liquidjs": "^10.19.1",
"prettier": "3.6.2",
"ts-node": "^10.9.2",
"typescript": "^5.8.3",
"typescript-eslint": "^8.38.0",
"@eslint/js": "^9.31.0"
},
"topConfig": {
"descriptiveName": "Doxygen Documentation Converter",
"permalinkName": "doxygen2docusaurus",
"preferShortName": "true",
"skipCiTests": "true",
"hasNoGithubReleases": "true",
"hasCli": "true",
"useEslint": "true",
"hasTriggerPublish": "true",
"isWebPreview": "true"
},
"prettier": {
"printWidth": 80,
"semi": false,
"singleQuote": true,
"trailingComma": "es5"
},
"engines": {
"node": " >=20.0.0"
}
}