mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
94 lines
2.2 KiB
JSON
94 lines
2.2 KiB
JSON
{
|
|
"name": "vant",
|
|
"version": "3.4.9",
|
|
"description": "Mobile UI Components built on Vue",
|
|
"main": "lib/vant.cjs.js",
|
|
"module": "es/index.js",
|
|
"style": "lib/index.css",
|
|
"typings": "lib/index.d.ts",
|
|
"unpkg": "lib/vant.min.js",
|
|
"jsdelivr": "lib/vant.min.js",
|
|
"exports": {
|
|
".": {
|
|
"node": {
|
|
"import": "./lib/ssr.mjs",
|
|
"require": "./lib/ssr.js"
|
|
},
|
|
"import": "./es/index.js",
|
|
"require": "./lib/vant.cjs.js",
|
|
"types": "./lib/index.d.ts"
|
|
},
|
|
"./es": "./es/index.js",
|
|
"./lib": "./lib/vant.cjs.js",
|
|
"./es/": "./es/",
|
|
"./lib/": "./lib/",
|
|
"./package.json": "./package.json"
|
|
},
|
|
"files": [
|
|
"es",
|
|
"lib",
|
|
"vetur"
|
|
],
|
|
"scripts": {
|
|
"dev": "vant-cli dev",
|
|
"lint": "vant-cli lint",
|
|
"test": "vant-cli test",
|
|
"build": "vant-cli build",
|
|
"build:site": "vant-cli build-site",
|
|
"release": "cp ../../README.md ./ && vant-cli release && rm ./README.md",
|
|
"release:site": "pnpm build:site && gh-pages -d site-dist --add",
|
|
"test:watch": "vant-cli test --watch",
|
|
"test:coverage": "open test/coverage/index.html"
|
|
},
|
|
"publishConfig": {
|
|
"registry": "https://registry.npmjs.org/"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/youzan/vant.git",
|
|
"directory": "packages/vant"
|
|
},
|
|
"bugs": "https://github.com/youzan/vant/issues",
|
|
"author": "chenjiahan",
|
|
"license": "MIT",
|
|
"keywords": [
|
|
"ui",
|
|
"vue",
|
|
"vue3",
|
|
"mobile",
|
|
"frontend",
|
|
"component",
|
|
"components"
|
|
],
|
|
"dependencies": {
|
|
"@vant/icons": "^1.8.0",
|
|
"@vant/popperjs": "^1.2.0",
|
|
"@vant/use": "^1.4.0"
|
|
},
|
|
"peerDependencies": {
|
|
"vue": "^3.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^16",
|
|
"@vant/area-data": "workspace:*",
|
|
"@vant/cli": "workspace:*",
|
|
"@vant/eslint-config": "workspace:*",
|
|
"@vue/runtime-core": "^3.2.27",
|
|
"@vue/test-utils": "^2.0.0-rc.16",
|
|
"typescript": "~4.5.2",
|
|
"vue": "^3.2.27",
|
|
"vue-router": "^4.0.12"
|
|
},
|
|
"sideEffects": [
|
|
"es/**/style/*",
|
|
"lib/**/style/*",
|
|
"*.css",
|
|
"*.less"
|
|
],
|
|
"web-types": "vetur/web-types.json",
|
|
"vetur": {
|
|
"tags": "vetur/tags.json",
|
|
"attributes": "vetur/attributes.json"
|
|
}
|
|
}
|