forked from microsoft/rushstack
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.7 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
{
"name": "@microsoft/api-extractor",
"version": "7.47.7",
"description": "Analyze the exported API for a TypeScript library and generate reviews, documentation, and .d.ts rollups",
"keywords": [
"typescript",
"API",
"JSDoc",
"AEDoc",
"TSDoc",
"generate",
"documentation",
"declaration",
"dts",
".d.ts",
"rollup",
"bundle",
"compiler",
"alpha",
"beta"
],
"repository": {
"type": "git",
"url": "https://github.com/microsoft/rushstack.git",
"directory": "apps/api-extractor"
},
"homepage": "https://api-extractor.com",
"main": "lib/index.js",
"typings": "dist/rollup.d.ts",
"bin": {
"api-extractor": "./bin/api-extractor"
},
"license": "MIT",
"scripts": {
"build": "heft build --clean",
"_phase:build": "heft run --only build -- --clean",
"_phase:test": "heft run --only test -- --clean"
},
"dependencies": {
"@microsoft/api-extractor-model": "workspace:*",
"@microsoft/tsdoc-config": "~0.17.0",
"@microsoft/tsdoc": "~0.15.0",
"@rushstack/node-core-library": "workspace:*",
"@rushstack/rig-package": "workspace:*",
"@rushstack/terminal": "workspace:*",
"@rushstack/ts-command-line": "workspace:*",
"lodash": "~4.17.15",
"minimatch": "~3.0.3",
"resolve": "~1.22.1",
"semver": "~7.5.4",
"source-map": "~0.6.1",
"typescript": "5.4.2"
},
"devDependencies": {
"@rushstack/heft-node-rig": "2.6.15",
"@rushstack/heft": "0.66.17",
"@types/heft-jest": "1.0.1",
"@types/lodash": "4.14.116",
"@types/minimatch": "3.0.5",
"@types/node": "18.17.15",
"@types/resolve": "1.20.2",
"@types/semver": "7.5.0",
"local-eslint-config": "workspace:*"
}
}