| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112 |
- {
- "name": "@nutui/nutui",
- "version": "3.0.0-beta.5",
- "npm": {
- "tag": "beta"
- },
- "description": "一套京东风格的轻量级移动端 Vue 组件库",
- "main": "dist/nutui.umd.js",
- "module": "dist/nutui.es.js",
- "style": "dist/style.css",
- "typings": "dist/index.d.ts",
- "keywords": [
- "nutui",
- "nutui2",
- "nutui3",
- "vue",
- "vue3",
- "webpack",
- "vue component",
- "vue3 component",
- "vite",
- "jdc",
- "jdcfe"
- ],
- "author": "jdcfe",
- "license": "MIT",
- "publishConfig": {
- "access": "public",
- "registry": "https://registry.npmjs.org/"
- },
- "files": [
- "dist",
- "README.md",
- "package.json",
- "LICENSE",
- "CHANGELOG.md"
- ],
- "scripts": {
- "checked": "npm run generate:file && rm -rf dist/ && tsc",
- "dev": "npm run checked && vite --open",
- "build:site": "npm run checked && vite build",
- "build": "npm run checked && vite build --config vite.config.build.ts && npm run generate:types",
- "build:disperse": "vite build --config vite.config.build.disperse.ts",
- "serve": "vite preview",
- "upload": "yarn build:site && node ./jd/upload.js",
- "add": "node jd/createComponentMode.js",
- "publish:beta": "npm publish --tag=beta",
- "generate:file": "node jd/generate-nutui.js",
- "generate:types": "node jd/generate-types.js"
- },
- "dependencies": {
- "axios": "^0.21.0",
- "gsap": "^3.6.0",
- "sass": "^1.32.8",
- "vue": "^3.0.5",
- "vue-router": "^4.0.4"
- },
- "devDependencies": {
- "@commitlint/cli": "^10.0.0",
- "@commitlint/config-conventional": "^10.0.0",
- "@types/node": "^14.14.31",
- "@vitejs/plugin-vue": "^1.1.5",
- "@vue/compiler-sfc": "^3.0.5",
- "@vue/eslint-config-prettier": "^6.0.0",
- "@vue/eslint-config-typescript": "^5.0.2",
- "eslint": "^6.7.2",
- "eslint-plugin-prettier": "^3.1.3",
- "eslint-plugin-vue": "^7.0.0-0",
- "front-matter": "^4.0.2",
- "highlight.js": "^10.3.1",
- "husky": "^4.3.0",
- "lint-staged": "^10.5.0",
- "prettier": "^1.19.1",
- "transliteration": "^2.2.0",
- "typescript": "^4.1.5",
- "vite": "^2.0.5",
- "vite-plugin-md": "^0.5.1"
- },
- "eslintConfig": {
- "root": true,
- "env": {
- "node": true
- },
- "extends": [
- "plugin:vue/vue3-essential",
- "eslint:recommended",
- "@vue/typescript/recommended",
- "@vue/prettier",
- "@vue/prettier/@typescript-eslint"
- ],
- "parserOptions": {
- "ecmaVersion": 2020
- },
- "rules": {
- "vue/no-unused-components": "off",
- "no-debugger": "off"
- }
- },
- "husky": {
- "hooks": {
- "pre-commit": "node ./jd/verifymail.js && lint-staged",
- "commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
- }
- },
- "lint-staged": {
- "*.{ts,js,vue,scss}": "prettier --write"
- },
- "repository": {
- "type": "git",
- "url": "https://github.com/jdf2e/nutui.git"
- }
- }
|