-
Notifications
You must be signed in to change notification settings - Fork 100
/
package.json
83 lines (83 loc) · 2.41 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
{
"name": "yuque-dl",
"version": "1.0.73",
"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",
"eslintLog": "eslint . > eslint.log",
"eslintFix": "eslint --fix .",
"changelog:gen": "conventional-changelog -p angular -i CHANGELOG.md -s -r 2",
"changelog:commit": "git add CHANGELOG.md && git commit CHANGELOG.md -m 'chore: update changelog' && git push",
"release": "run-s clean build np changelog:gen changelog:commit",
"test": "vitest --run",
"test:ui": "vitest --ui --coverage.enabled=true",
"test:coverage": "vitest run --coverage"
},
"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/mdast": "^4.0.4",
"@types/node": "^20.11.26",
"@types/progress": "^2.0.5",
"@types/semver": "^7.5.8",
"@types/web-bluetooth": "^0.0.20",
"@typescript-eslint/eslint-plugin": "^6.3.0",
"@typescript-eslint/parser": "^6.3.0",
"@vitest/coverage-v8": "^1.6.0",
"@vitest/ui": "^1.6.0",
"conventional-changelog-cli": "^5.0.0",
"msw": "^2.3.0",
"np": "^10.0.7",
"npm-run-all": "^4.1.5",
"rollup": "^4.18.0",
"tslib": "^2.6.1",
"typescript": "^5.4.5",
"vitest": "^1.6.0"
},
"main": "dist/es/index.js",
"types": "types/index.d.ts",
"dependencies": {
"axios": "^1.4.0",
"cac": "^6.7.14",
"cli-progress": "^3.12.0",
"log4js": "^6.9.1",
"markdown-toc": "^1.2.0",
"mdast-util-from-markdown": "^2.0.1",
"mdast-util-to-markdown": "^2.1.0",
"ora": "^7.0.1",
"pako": "1.0.11",
"pull-md-img": "^0.0.65",
"rand-user-agent": "1.0.109",
"semver": "^7.6.0",
"vitepress": "1.2.2"
},
"engines": {
"node": ">=18.4.0"
}
}