1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283 |
- {
- "name": "vant",
- "version": "4.9.9",
- "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"
- ],
- "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": {
- "@vue/shared": "^3.5.12",
- "@vant/popperjs": "^1.3.0",
- "@vant/use": "^1.6.0"
- },
- "peerDependencies": {
- "vue": "^3.0.0"
- },
- "devDependencies": {
- "@types/node": "^22.9.0",
- "@vitejs/plugin-vue": "^5.2.0",
- "@vitejs/plugin-vue-jsx": "^4.1.0",
- "@vitest/coverage-istanbul": "^2.1.5",
- "@vue/runtime-core": "^3.5.12",
- "@vue/test-utils": "^2.4.6",
- "csstype": "^3.1.3",
- "diffable-html": "^5.0.0",
- "jsdom": "^25.0.1",
- "typescript": "^5.6.3",
- "vite": "^5.4.11",
- "vitest": "^2.1.5",
- "vitest-canvas-mock": "^0.3.3",
- "vue": "^3.5.12",
- "vue-router": "^4.4.5",
- "@vant/area-data": "2.0.0",
- "@vant/eslint-config": "4.0.0",
- "@vant/cli": "7.1.0",
- "@vant/icons": "3.0.2"
- },
- "sideEffects": [
- "es/**/style/*",
- "lib/**/style/*",
- "*.css"
- ],
- "web-types": "lib/web-types.json",
- "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"
- }
- }
|