forked from gxr404/yuque-dl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 1.73 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
{
"name": "yuque-dl",
"version": "1.0.26",
"description": "yuque 知识库下载",
"type": "module",
"bin": {
"yuque-dl": "bin/index.js"
},
"scripts": {
"dev": "pnpm run build:bundle -w",
"build": "run-s build:**",
"build:bundle": "rollup -c rollup.config.ts --configPlugin typescript",
"build:types": "tsc --emitDeclarationOnly --outDir types -p tsconfig.base.json",
"clean": "rm -rf dist types",
"np": "np",
"release": "run-s clean build np",
"eslintLog": "eslint . > eslint.log"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gxr404/yuque-dl.git"
},
"keywords": [
"yuque",
"nodejs",
"download",
"yuque-dl"
],
"author": "gxr404",
"license": "ISC",
"bugs": {
"url": "https://github.com/gxr404/yuque-dl/issues"
},
"homepage": "https://github.com/gxr404/yuque-dl#readme",
"devDependencies": {
"@rollup/plugin-terser": "^0.4.3",
"@rollup/plugin-typescript": "^11.1.2",
"@types/cli-progress": "^3.11.0",
"@types/node": "^20.5.0",
"@types/progress": "^2.0.5",
"@typescript-eslint/eslint-plugin": "^6.3.0",
"@typescript-eslint/parser": "^6.3.0",
"jest": "^29.6.2",
"np": "^8.0.4",
"npm-run-all": "^4.1.5",
"rollup": "^3.28.0",
"tslib": "^2.6.1"
},
"main": "dist/es/index.js",
"types": "types/index.d.ts",
"exports": {
".": {
"types": "./types/src/index.d.ts",
"import": "./es/index.js",
"require": "./cjs/index.js"
}
},
"dependencies": {
"axios": "^1.4.0",
"cac": "^6.7.14",
"cli-progress": "^3.12.0",
"log4js": "^6.9.1",
"ora": "^7.0.1",
"pull-md-img": "^0.0.26",
"rand-user-agent": "1.0.109"
},
"engines": {
"node": ">=16.14.0"
}
}