mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
102 lines
2.1 KiB
JSON
102 lines
2.1 KiB
JSON
{
|
|
"name": "vant",
|
|
"version": "3.0.0-beta.0",
|
|
"description": "Mobile UI Components built on Vue",
|
|
"main": "lib/index.js",
|
|
"module": "es/index.js",
|
|
"style": "lib/index.css",
|
|
"typings": "types/index.d.ts",
|
|
"files": [
|
|
"es",
|
|
"lib",
|
|
"types",
|
|
"vetur"
|
|
],
|
|
"scripts": {
|
|
"bootstrap": "yarn || npm i",
|
|
"dev": "vant-cli dev",
|
|
"lint": "vant-cli lint && ls-lint",
|
|
"test": "vant-cli test",
|
|
"build": "vant-cli build",
|
|
"release": "vant-cli release --tag next",
|
|
"test:watch": "vant-cli test --watch",
|
|
"release:site": "sh docs/site/release.sh",
|
|
"test:coverage": "open test/coverage/index.html"
|
|
},
|
|
"npm": {
|
|
"tag": "next"
|
|
},
|
|
"husky": {
|
|
"hooks": {
|
|
"pre-commit": "lint-staged && ls-lint",
|
|
"commit-msg": "vant-cli commit-lint"
|
|
}
|
|
},
|
|
"lint-staged": {
|
|
"*.md": "prettier --write",
|
|
"*.{ts,tsx,js,vue,less}": "prettier --write",
|
|
"*.{ts,tsx,js,vue}": "eslint --fix",
|
|
"*.{vue,css,less}": "stylelint --fix"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git@github.com:youzan/vant.git"
|
|
},
|
|
"keywords": [
|
|
"ui",
|
|
"vue",
|
|
"frontend",
|
|
"mobile ui",
|
|
"component",
|
|
"components"
|
|
],
|
|
"author": "youzanfe",
|
|
"license": "MIT",
|
|
"dependencies": {
|
|
"@babel/runtime": "7.x",
|
|
"@vant/icons": "1.3.0",
|
|
"@vant/use": "^0.0.2",
|
|
"vue-lazyload": "1.2.3"
|
|
},
|
|
"peerDependencies": {
|
|
"vue": "^3.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@ls-lint/ls-lint": "^1.8.0",
|
|
"@vant/cli": "^3.0.0-beta.0",
|
|
"@vue/compiler-sfc": "^3.0.0",
|
|
"prettier": "^2.0.4",
|
|
"vue": "^3.0.0"
|
|
},
|
|
"sideEffects": [
|
|
"es/**/style/*",
|
|
"lib/**/style/*",
|
|
"*.css",
|
|
"*.less"
|
|
],
|
|
"vetur": {
|
|
"tags": "vetur/tags.json",
|
|
"attributes": "vetur/attributes.json"
|
|
},
|
|
"web-types": "vetur/web-types.json",
|
|
"eslintConfig": {
|
|
"root": true,
|
|
"extends": [
|
|
"@vant"
|
|
]
|
|
},
|
|
"stylelint": {
|
|
"extends": [
|
|
"@vant/stylelint-config"
|
|
]
|
|
},
|
|
"prettier": {
|
|
"singleQuote": true,
|
|
"proseWrap": "never"
|
|
},
|
|
"browserslist": [
|
|
"Android >= 4.0",
|
|
"iOS >= 8"
|
|
]
|
|
}
|