forked from TypeStrong/typedoc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
104 lines (104 loc) · 3.11 KB
/
package.json
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
104
{
"name": "typedoc",
"description": "Create api documentation for TypeScript projects.",
"version": "0.26.5",
"homepage": "https://typedoc.org",
"exports": {
".": "./dist/index.js",
"./tsdoc.json": "./tsdoc.json",
"./package.json": "./package.json"
},
"types": "./dist/index.d.ts",
"bin": {
"typedoc": "bin/typedoc"
},
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git://github.com/TypeStrong/TypeDoc.git"
},
"bugs": {
"url": "https://github.com/TypeStrong/TypeDoc/issues"
},
"engines": {
"node": ">= 18"
},
"dependencies": {
"lunr": "^2.3.9",
"markdown-it": "^14.1.0",
"minimatch": "^9.0.5",
"shiki": "^1.9.1",
"yaml": "^2.4.5"
},
"peerDependencies": {
"typescript": "4.6.x || 4.7.x || 4.8.x || 4.9.x || 5.0.x || 5.1.x || 5.2.x || 5.3.x || 5.4.x || 5.5.x"
},
"devDependencies": {
"@types/lunr": "^2.3.7",
"@types/markdown-it": "^14.1.1",
"@types/mocha": "^10.0.7",
"@types/node": "18",
"@typestrong/fs-fixture-builder": "github:TypeStrong/fs-fixture-builder#34113409e3a171e68ce5e2b55461ef5c35591cfe",
"c8": "^10.1.2",
"esbuild": "^0.21.5",
"eslint": "^9.5.0",
"mocha": "^10.5.2",
"prettier": "3.3.2",
"puppeteer": "^22.12.1",
"ts-node": "^10.9.2",
"typescript": "5.5.2",
"typescript-eslint": "^7.14.1"
},
"files": [
"/bin",
"!*.map",
"/dist",
"!/dist/tmp",
"!/dist/.tsbuildinfo",
"!/dist/test",
"/LICENSE",
"/static",
"/tsdoc.json"
],
"scripts": {
"test": "mocha --config .config/mocha.fast.json",
"test:cov": "c8 -r lcov mocha --config .config/mocha.fast.json",
"doc:c": "node bin/typedoc --tsconfig src/test/converter/tsconfig.json",
"doc:cd": "node --inspect-brk bin/typedoc --tsconfig src/test/converter/tsconfig.json",
"doc:c2": "node bin/typedoc --options src/test/converter2 --tsconfig src/test/converter2/tsconfig.json",
"doc:c2d": "node --inspect-brk bin/typedoc --options src/test/converter2 --tsconfig src/test/converter2/tsconfig.json",
"example": "cd example && node ../bin/typedoc",
"test:full": "c8 -r lcov -r text-summary mocha --config .config/mocha.full.json",
"rebuild_specs": "node scripts/rebuild_specs.js",
"build": "npm run build:tsc && npm run build:themes",
"build:tsc": "tsc --project .",
"build:themes": "node scripts/build_themes.js",
"build:prod": "npm run build:prod:tsc && npm run build:themes",
"build:prod:tsc": "tsc --project . --sourceMap false --declarationMap false",
"lint": "eslint . && npm run prettier -- --check .",
"prettier": "prettier --config .config/.prettierrc.json --ignore-path .config/.prettierignore",
"prepack": "node scripts/set_strict.js false && npm run build:prod",
"prepare": "node scripts/prepare.mjs",
"postpublish": "node scripts/set_strict.js true"
},
"keywords": [
"typescript",
"documentation",
"generator"
],
"c8": {
"extension": [
".ts",
".tsx"
],
"reporter": [
"html-spa",
"text-summary"
],
"exclude": [
"**/*.d.ts",
"src/test",
"tmp"
]
}
}