mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
80 lines
1.7 KiB
JSON
80 lines
1.7 KiB
JSON
{
|
|
"name": "vant",
|
|
"version": "3.0.13",
|
|
"description": "Mobile UI Components built on Vue",
|
|
"main": "lib/index.js",
|
|
"module": "es/index.js",
|
|
"style": "lib/index.css",
|
|
"typings": "lib/index.d.ts",
|
|
"files": [
|
|
"es",
|
|
"lib",
|
|
"vetur"
|
|
],
|
|
"publishConfig": {
|
|
"registry": "https://registry.npmjs.org/"
|
|
},
|
|
"scripts": {
|
|
"dev": "vant-cli dev",
|
|
"lint": "vant-cli lint",
|
|
"test": "vant-cli test",
|
|
"build": "vant-cli build",
|
|
"prepare": "husky install",
|
|
"release": "vant-cli release --tag next",
|
|
"test:watch": "vant-cli test --watch",
|
|
"release:site": "vant-cli build-site && gh-pages -d site --add --dest v3",
|
|
"test:coverage": "open test/coverage/index.html"
|
|
},
|
|
"npm": {
|
|
"tag": "next"
|
|
},
|
|
"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",
|
|
"vue3",
|
|
"mobile",
|
|
"frontend",
|
|
"component",
|
|
"components"
|
|
],
|
|
"author": "youzanfe",
|
|
"license": "MIT",
|
|
"dependencies": {
|
|
"@babel/runtime": "7.x",
|
|
"@vant/icons": "^1.5.3",
|
|
"@vant/lazyload": "^1.1.0",
|
|
"@vant/popperjs": "^1.1.0",
|
|
"@vant/use": "^1.1.0"
|
|
},
|
|
"peerDependencies": {
|
|
"vue": "^3.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@vant/cli": "^3.10.1",
|
|
"@vant/area-data": "^1.1.0",
|
|
"@vue/compiler-sfc": "^3.0.6",
|
|
"vue": "^3.0.6"
|
|
},
|
|
"sideEffects": [
|
|
"es/**/style/*",
|
|
"lib/**/style/*",
|
|
"*.css",
|
|
"*.less"
|
|
],
|
|
"vetur": {
|
|
"tags": "vetur/tags.json",
|
|
"attributes": "vetur/attributes.json"
|
|
},
|
|
"web-types": "vetur/web-types.json"
|
|
}
|