UNPKG

@artipub/cli

Version:

A library for processing and publishing articles

89 lines 2.1 kB
{ "name": "@artipub/cli", "version": "0.0.17", "description": "A library for processing and publishing articles", "author": "Potter<aa4790139@gmail.com>", "homepage": "https://artipub.github.io/artipub/", "repository": { "type": "git", "url": "git+https://github.com/artipub/artipub.git" }, "bugs": { "url": "https://github.com/artipub/artipub/issues" }, "publishConfig": { "access": "public" }, "type": "module", "main": "./dist/index.cjs", "module": "./dist/index.js", "types": "./dist/index.d.ts", "exports": { "require": "./dist/index.cjs", "import": "./dist/index.js" }, "bin": { "artipub": "./bin/index.js" }, "files": [ "dist", "README.md", "README_zh-CN.md", "package.json" ], "keywords": [ "typescript", "node", "notion", "dev.to", "process", "article", "publish", "flow" ], "husky": { "hooks": { "pre-commit": "lint-staged" } }, "lint-staged": { "**/*.{ts}": [ "pnpm lint:fix" ] }, "license": "MIT", "devDependencies": { "@babel/core": "^7.24.7", "@babel/preset-env": "^7.24.7", "@rollup/plugin-alias": "^5.1.0", "@rollup/plugin-babel": "^6.0.4", "@rollup/plugin-commonjs": "^26.0.1", "@rollup/plugin-node-resolve": "^15.2.3", "@rollup/plugin-typescript": "^11.1.6", "@types/fs-extra": "^11.0.4", "@types/inquirer": "^9.0.7", "@types/lodash-es": "^4.17.12", "@types/node": "^20.14.2", "rollup": "^4.18.0", "rollup-plugin-dts": "^6.1.1", "@artipub/shared": "0.0.1" }, "peerDependencies": { "@artipub/core": "1.1.9" }, "dependencies": { "ajv": "^8.17.1", "fs-extra": "^11.2.0", "commander": "^12.1.0", "inquirer": "^10.1.2", "mlly": "^1.7.1" }, "scripts": { "lint": "eslint --ext .ts && prettier -c src", "lint:fix": "eslint --fix --ext .ts && prettier -w src", "build": "pnpm clean && npx tsx scripts/build.ts", "test": "vitest --run", "test:coverage": "vitest --coverage --run", "clean": "rm -rf dist" } }