shiyzhangcron
Version:
> 一个基于vue3+Ant-Design-vue的cron表达式组件
115 lines • 3.1 kB
JSON
{
"name": "shiyzhangcron",
"version": "0.1.5",
"keywords": [
"Vue3",
"TS",
"Vite",
"shiyzhang",
"cron",
"Cron",
"cron表达式"
],
"bugs": {
"url": "https://github.com/shiyzhang/shiyzhang-cron/issues"
},
"license": "ISC",
"author": "shiyzhang",
"type": "module",
"exports": {
"./dist/style.css": "./dist/style.css",
"./css": "./dist/style.css",
".": {
"import": "./dist/shiyzhang@cron.js",
"require": "./dist/shiyzhang@cron.umd.cjs"
}
},
"main": "./dist/shiyzhang@cron.umd.cjs",
"module": "./dist/shiyzhang@cron.js",
"files": [
"dist",
"types",
"components"
],
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"prettier --write",
"eslint --fix"
],
"{!(package)*.json,*.code-snippets,.!(browserslist)*rc}": [
"prettier --write--parser json"
],
"package.json": [
"prettier --write"
],
"*.vue": [
"prettier --write",
"eslint --fix",
"stylelint --fix"
],
"*.{scss,less,styl,html}": [
"prettier --write",
"stylelint --fix"
],
"*.md": [
"prettier --write"
]
},
"config": {
"commitizen": {
"path": "node_modules/cz-git"
}
},
"dependencies": {
"@ant-design/icons-vue": "^7.0.1",
"ant-design-vue": "^4.1.2",
"cron-parser": "^4.9.0",
"vue": "3.3.4",
"vue-types": "^5.1.1"
},
"devDependencies": {
"@commitlint/cli": "^18.4.4",
"@commitlint/config-conventional": "^18.4.4",
"@vitejs/plugin-vue": "^5.0.4",
"@vue/compiler-sfc": "^3.4.5",
"@vue/test-utils": "^2.4.3",
"cross-env": "^7.0.3",
"cz-git": "^1.8.0",
"czg": "^1.8.0",
"husky": "^8.0.3",
"less": "^4.2.0",
"lint-staged": "15.2.0",
"prettier": "^3.1.1",
"prettier-plugin-packagejson": "^2.4.8",
"tree-cli": "^0.6.7",
"turbo": "^1.11.3",
"typescript": "^5.3.3",
"unbuild": "^2.0.0",
"vite": "^5.0.10",
"vue-tsc": "^1.8.27",
"@shiyzhang/eslint-config": "1.0.0",
"@shiyzhang/stylelint-config": "1.0.0",
"@shiyzhang/ts-config": "1.0.0"
},
"packageManager": "pnpm@8.10.0",
"engines": {
"node": ">=18.12.0",
"pnpm": ">=8.10.0"
},
"scripts": {
"bootstrap": "pnpm install",
"build": "cross-env NODE_ENV=production NODE_OPTIONS=--max-old-space-size=8192 pnpm vite build",
"build:no-cache": "pnpm store prune && npm run build",
"commit": "git add . && czg",
"dev": "pnpm vite",
"dir": "tree -l 2 -o DIRREADME.md --ignore node_modules/, .git/, .gitignore/ ,./dist ",
"preinstall": "npx only-allow pnpm",
"postinstall": "turbo run stub",
"lint": "turbo run lint",
"lint:eslint": "eslint --cache --max-warnings 0 \"{src,mock}/**/*.{vue,ts,tsx}\" --fix",
"lint:prettier": "prettier --write .",
"lint:stylelint": "stylelint \"**/*.{vue,css,less,scss}\" --fix --cache --cache-location node_modules/.cache/stylelint/",
"reinstall": "rimraf pnpm-lock.yaml && rimraf package.lock.json && rimraf node_modules && npm run bootstrap",
"serve": "npm run dev"
}
}