-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.41 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.41 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
{
"name": "@janghood/api-extractor",
"version": "0.0.1-alpha.16",
"description": "A simple api extractor for code doc.",
"main": "dist/index.js",
"files": [
"dist",
"types",
"tsdoc.json"
],
"bin": {
"jh-api": "dist/bin/jh-api.js"
},
"types": "types/janghood-api-extractor.d.ts",
"scripts": {
"jh-api": "node dist/bin/jh-api",
"test jh-api": "npm run build && npm run jh-api",
"start": "tsx src/bin/jh-api.ts",
"test": "vitest",
"test-update": "vitest -u",
"coverage": "vitest --coverage",
"rm-dist": "rm -rf dist",
"build": "npm run rm-dist && rollup --config rollup.config.ts --configPlugin @rollup/plugin-typescript && npm run build-bin",
"build-bin": "rollup --config src/bin/rollup.config.ts --configPlugin @rollup/plugin-typescript"
},
"author": "",
"license": "ISC",
"dependencies": {
"@janghood/config": "0.0.1-6",
"@microsoft/tsdoc": "^0.14.2",
"@microsoft/tsdoc-config": "^0.16.2",
"cac": "^6.7.14",
"fast-glob": "^3.2.12",
"tsutils": "^3.21.0"
},
"peerDependencies": {
"typescript": ">=4.6.3"
},
"devDependencies": {
"@rollup/plugin-json": "^6.0.0",
"@rollup/plugin-typescript": "^11.1.0",
"@types/node": "^18.15.11",
"@vitest/coverage-v8": "^1.3.0",
"esbuild": "^0.17.17",
"rollup": "^3.20.4",
"tslib": "^2.5.0",
"tsx": "^3.12.6",
"typescript": "^5.0.4",
"vitest": "^1.3.0"
}
}