vant/packages/vant/package.json
2023-12-17 08:33:53 -03:00

83 lines
2.1 KiB
JSON

{
"name": "vant",
"version": "4.8.1",
"description": "Mobile UI Components built on Vue",
"main": "lib/vant.cjs.js",
"module": "es/index.mjs",
"style": "lib/index.css",
"typings": "lib/index.d.ts",
"unpkg": "lib/vant.min.js",
"jsdelivr": "lib/vant.min.js",
"files": [
"es",
"lib"
],
"scripts": {
"dev": "vant-cli dev",
"lint": "vant-cli lint",
"test": "vitest run",
"build": "vant-cli build",
"build:site": "vant-cli build-site",
"release": "cp ../../README.md ./ && vant-cli release --gitTag && rm ./README.md",
"release:site": "pnpm build:site && npx gh-pages -d site-dist --add",
"test:update": "vitest run -u",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"open:coverage": "open test/coverage/lcov-report/index.html"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"repository": {
"type": "git",
"url": "https://github.com/vant-ui/vant.git",
"directory": "packages/vant"
},
"bugs": "https://github.com/vant-ui/vant/issues",
"author": "chenjiahan",
"license": "MIT",
"keywords": [
"ui",
"vue",
"vue3",
"mobile",
"frontend",
"component",
"components"
],
"dependencies": {
"@vant/popperjs": "workspace:^",
"@vant/use": "workspace:^",
"@vue/shared": "^3.0.0"
},
"peerDependencies": {
"vue": "^3.0.0"
},
"devDependencies": {
"@types/node": "^18.16.3",
"@vant/area-data": "workspace:*",
"@vant/cli": "workspace:*",
"@vant/eslint-config": "workspace:*",
"@vant/icons": "workspace:*",
"@vitejs/plugin-vue": "^4.0.0",
"@vitejs/plugin-vue-jsx": "^3.0.0",
"@vitest/coverage-istanbul": "0.34.1",
"@vue/runtime-core": "^3.3.4",
"@vue/test-utils": "^2.3.2",
"diffable-html": "^5.0.0",
"jsdom": "^22.1.0",
"typescript": "^5.0.4",
"vite": "^4.4.12",
"vitest": "0.34.2",
"vitest-canvas-mock": "^0.3.2",
"vue": "^3.3.4",
"vue-router": "^4.1.6"
},
"sideEffects": [
"es/**/style/*",
"lib/**/style/*",
"*.css"
],
"web-types": "lib/web-types.json"
}