-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
41 lines (41 loc) · 1.19 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
{
"name": "api-hose",
"version": "1.3.0",
"main": "dist/index.js",
"description": "一个将typescript的interface转化为markdown输出的库",
"repository": "https://github.com/HerbertHe/api-hose.git",
"author": "HerbertHe <[email protected]>",
"scripts": {
"start": "rollup -w -c",
"build": "yarn run build:prod && yarn run build:types",
"build:types": "tsc --emitDeclarationOnly",
"build:prod": "rollup -c",
"demo": "node ./demo/index.js"
},
"bugs": {
"url": "https://github.com/HerbertHe/api-hose/issues"
},
"keywords": [
"TypeScript",
"Markdown",
"Document",
"API"
],
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.12.13",
"@babel/core": "^7.12.13",
"@babel/plugin-proposal-class-properties": "^7.12.13",
"@babel/plugin-transform-runtime": "^7.12.15",
"@babel/preset-env": "^7.12.13",
"@babel/preset-typescript": "^7.12.13",
"@rollup/plugin-babel": "^5.2.3",
"@rollup/plugin-commonjs": "^17.1.0",
"@rollup/plugin-node-resolve": "^11.1.1",
"rollup": "^2.38.5",
"typescript": "^4.1.3"
},
"dependencies": {
"babel-runtime": "^6.26.0"
}
}