UNPKG

yuque-dl

Version:
83 lines 2.46 kB
{ "name": "yuque-dl", "version": "1.0.78", "description": "yuque 知识库下载", "type": "module", "bin": { "yuque-dl": "bin/index.js" }, "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" }, "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" } }