1 | {
|
2 | "name": "doxdox",
|
3 | "description": "Main package for doxdox.",
|
4 | "version": "4.0.0-preview.24",
|
5 | "exports": "./dist/index.js",
|
6 | "types": "./dist/index.d.ts",
|
7 | "type": "module",
|
8 | "engines": {
|
9 | "node": ">=20"
|
10 | },
|
11 | "dependencies": {
|
12 | "doxdox-cli": "4.0.0-preview.24",
|
13 | "doxdox-core": "4.0.0-preview.24",
|
14 | "doxdox-parser-jsdoc": "4.0.0-preview.24",
|
15 | "doxdox-renderer-bootstrap": "4.0.0-preview.24",
|
16 | "doxdox-renderer-json": "4.0.0-preview.24",
|
17 | "doxdox-renderer-markdown": "4.0.0-preview.24"
|
18 | },
|
19 | "devDependencies": {
|
20 | "@eslint/js": "9.9.1",
|
21 | "@types/node": "22.5.2",
|
22 | "@typescript-eslint/eslint-plugin": "8.4.0",
|
23 | "@typescript-eslint/parser": "8.4.0",
|
24 | "eslint": "9.9.1",
|
25 | "rimraf": "6.0.1",
|
26 | "typescript": "5.5.4",
|
27 | "typescript-eslint": "8.4.0"
|
28 | },
|
29 | "scripts": {
|
30 | "build": "rimraf dist/ && tsc",
|
31 | "lint": "eslint"
|
32 | },
|
33 | "jest": {
|
34 | "collectCoverage": true,
|
35 | "extensionsToTreatAsEsm": [
|
36 | ".ts"
|
37 | ],
|
38 | "transform": {
|
39 | "^.+\\.ts$": [
|
40 | "ts-jest",
|
41 | {
|
42 | "useESM": true
|
43 | }
|
44 | ]
|
45 | },
|
46 | "testRegex": ".*.test.ts$"
|
47 | },
|
48 | "keywords": [
|
49 | "doxdox",
|
50 | "documentation",
|
51 | "cli",
|
52 | "jsdoc",
|
53 | "bootstrap",
|
54 | "markdown",
|
55 | "json"
|
56 | ],
|
57 | "authors": [
|
58 | {
|
59 | "name": "Scott Doxey",
|
60 | "email": "hello@scottdoxey.com",
|
61 | "homepage": "http://scottdoxey.com/"
|
62 | }
|
63 | ],
|
64 | "license": "MIT",
|
65 | "homepage": "https://github.com/docsbydoxdox/doxdox",
|
66 | "repository": {
|
67 | "type": "git",
|
68 | "url": "git://github.com/docsbydoxdox/doxdox.git"
|
69 | }
|
70 | }
|