mirror of
https://github.com/tusen-ai/naive-ui.git
synced 2024-11-21 01:13:16 +08:00
143 lines
5.2 KiB
JSON
143 lines
5.2 KiB
JSON
{
|
|
"name": "naive-ui",
|
|
"version": "2.0.0-beta.1",
|
|
"description": "A Vue UI Framework. Caring About Styles, Themed, Batteries Included, Not Rather Slow.",
|
|
"main": "lib/index.js",
|
|
"module": "es/index.js",
|
|
"scripts": {
|
|
"start": "npm run dev",
|
|
"deprecated:build:icons": "npm run clean && node build/build-icons.js",
|
|
"build:js": "npm run gen-version && npm run clean && tsc -p tsconfig.esm.json && tsc -p tsconfig.cjs.json && node build/terse-cssr.js",
|
|
"build:package": "npm run gen-version && npm run clean && node build/build-icons.js && tsc -p tsconfig.esm.json && tsc -p tsconfig.cjs.json && node build/terse-cssr.js",
|
|
"build:site": "./build/before-build-site.sh && node build/restore-side-effects.js && cross-env NODE_ENV=production NODE_OPTIONS=--max-old-space-size=4096 vite build && rm -rf node_modules/naive-ui && cp site/index.html site/404.html && node build/clear-side-effects.js",
|
|
"build:doc": "npm run gen-version && npm run build && rm -rf build-doc/dist && cross-env NODE_ENV=production webpack --config build/webpack.doc.js",
|
|
"clean": "rm -rf site lib es node_modules/naive-ui",
|
|
"dev": "npm run clean && npm run gen-version && cross-env NODE_ENV=development vite",
|
|
"dev:ts": "npm run clean && npm run gen-version && cross-env NODE_ENV=development TUSIMPLE=true vite",
|
|
"lint": "npm run lint:code && npm run lint:type",
|
|
"lint:type": "tsc --noEmit",
|
|
"lint:code": "eslint --fix \"{src,build,scripts,demo}/**/*.{js,vue,md}\"",
|
|
"format": "npm run format:code && npm run format:md",
|
|
"format:code": "prettier --write \"(src|demo)/**/*.(vue|js)\"",
|
|
"format:md": "prettier --write --parser markdown --prose-wrap never \"demo/**/*.md\"",
|
|
"release:package": "npm run build:package && npm publish",
|
|
"test": "cross-env NODE_ENV=test jest",
|
|
"gen-version": "node scripts/generate-version",
|
|
"tusimple:dev": "npm run generate && cross-env NODE_ENV=development webpack-dev-server --config build/webpack.tusimple-dev.js",
|
|
"tusimple:build:doc": "npm run generate && npm run build && rm -rf build-doc/dist && cross-env NODE_ENV=production webpack --config build/webpack.tusimple-doc.js",
|
|
"tusimple:release:doc": "npm run tusimple:build:doc && node build-doc/generate-deploy-sh.js && sudo bash build-doc/deploy-doc.sh",
|
|
"tusimple:release:doc:no-build": "node build-doc/generate-deploy-sh.js && sudo bash build-doc/deploy-doc.sh"
|
|
},
|
|
"author": "07akioni",
|
|
"license": "MIT",
|
|
"publishConfig": {
|
|
"registry": "***REMOVED***"
|
|
},
|
|
"files": [
|
|
"compat",
|
|
"es",
|
|
"lib",
|
|
"src",
|
|
"themes",
|
|
"README.md"
|
|
],
|
|
"lint-staged": {
|
|
"*.js": [
|
|
"prettier --write",
|
|
"eslint --fix"
|
|
],
|
|
"*.ts": [
|
|
"prettier --write",
|
|
"eslint --fix"
|
|
],
|
|
"*.tsx": [
|
|
"prettier --write",
|
|
"eslint --fix"
|
|
],
|
|
"*.vue": [
|
|
"prettier --parser=vue --write",
|
|
"eslint --fix"
|
|
],
|
|
"*.css": [
|
|
"prettier --write"
|
|
],
|
|
"*.md": [
|
|
"prettier --write --parser markdown --prose-wrap never",
|
|
"eslint --fix"
|
|
]
|
|
},
|
|
"devDependencies": {
|
|
"@babel/generator": "^7.12.11",
|
|
"@babel/parser": "^7.12.11",
|
|
"@babel/preset-env": "^7.12.10",
|
|
"@babel/traverse": "^7.12.12",
|
|
"@rollup/plugin-babel": "^5.2.2",
|
|
"@rollup/plugin-node-resolve": "^10.0.0",
|
|
"@rollup/plugin-replace": "^2.3.4",
|
|
"@types/jest": "^26.0.15",
|
|
"@types/lodash-es": "^4.17.4",
|
|
"@typescript-eslint/eslint-plugin": "^4.13.0",
|
|
"@typescript-eslint/parser": "^4.13.0",
|
|
"@vitejs/plugin-vue": "^1.1.4",
|
|
"@vue/compiler-sfc": "^3.0.5",
|
|
"@vue/eslint-config-standard": "^5.1.2",
|
|
"@vue/eslint-config-typescript": "^7.0.0",
|
|
"@vue/test-utils": "^2.0.0-beta.12",
|
|
"autoprefixer": "^9.8.6",
|
|
"babel-eslint": "^10.1.0",
|
|
"babel-jest": "^26.6.2",
|
|
"cross-env": "^5.2.1",
|
|
"cssnano": "^4.1.10",
|
|
"eslint": "^7.18.0",
|
|
"eslint-config-standard": "^16.0.2",
|
|
"eslint-config-standard-with-typescript": "^19.0.1",
|
|
"eslint-plugin-import": "^2.22.1",
|
|
"eslint-plugin-markdown": "^2.0.0-rc.0",
|
|
"eslint-plugin-node": "^11.1.0",
|
|
"eslint-plugin-promise": "^4.2.1",
|
|
"eslint-plugin-standard": "^4.1.0",
|
|
"eslint-plugin-vue": "^7.0.0",
|
|
"fs-extra": "^9.0.1",
|
|
"husky": "^4.3.5",
|
|
"jest": "^26.6.2",
|
|
"lint-staged": "^10.5.3",
|
|
"lodash": "^4.17.20",
|
|
"marked": "^1.2.0",
|
|
"prettier": "^2.2.1",
|
|
"rollup": "^2.32.1",
|
|
"rollup-plugin-terser": "^7.0.2",
|
|
"rollup-plugin-vue": "^6.0.0-beta.11",
|
|
"tinycolor2": "^1.4.2",
|
|
"typescript": "^4.1.3",
|
|
"vite": "^2.0.0-beta.60",
|
|
"vue-jest": "^5.0.0-alpha.5",
|
|
"vue-router": "^4.0.0-rc.1"
|
|
},
|
|
"dependencies": {
|
|
"@css-render/plugin-bem": "^0.12.0",
|
|
"@vicons/fluent": "~0.0.3",
|
|
"@vicons/ionicons-v4": "~0.0.3",
|
|
"@vicons/ionicons-v5": "~0.0.3",
|
|
"async-validator": "^3.4.0",
|
|
"css-render": "^0.12.0",
|
|
"date-fns": "^2.16.1",
|
|
"evtd": "^0.1.0",
|
|
"highlight.js": "^10.4.1",
|
|
"lodash-es": "^4.17.15",
|
|
"resize-observer-polyfill": "^1.5.1",
|
|
"seemly": "^0.1.6",
|
|
"treemate": "^0.2.4",
|
|
"vdirs": "^0.0.3",
|
|
"vfonts": "^0.0.1",
|
|
"vooks": "0.0.8",
|
|
"vue": "^3.0.5",
|
|
"vueuc": "^0.1.2"
|
|
},
|
|
"husky": {
|
|
"hooks": {
|
|
"pre-commit": "lint-staged"
|
|
}
|
|
},
|
|
"sideEffects": false
|
|
}
|