12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576 |
- {
- "name": "vant",
- "version": "3.6.10",
- "description": "Lightweight 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"
- ],
- "npm": {
- "tag": "latest-v3"
- },
- "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 --tag latest-v3 && rm ./README.md",
- "release:site": "pnpm build:site && npx 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/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/icons": "^1.8.0",
- "@vant/popperjs": "^1.2.1",
- "@vant/use": "^1.4.2"
- },
- "peerDependencies": {
- "vue": "^3.0.0"
- },
- "devDependencies": {
- "@types/node": "^16.11.56",
- "@types/jest": "^27.0.0",
- "@vant/area-data": "workspace:*",
- "@vant/cli": "workspace:*",
- "@vant/eslint-config": "workspace:*",
- "@vue/runtime-core": "^3.2.38",
- "@vue/test-utils": "^2.0.2",
- "typescript": "^4.8.2",
- "vue": "^3.2.38",
- "vue-router": "^4.1.5"
- },
- "sideEffects": [
- "es/**/style/*",
- "lib/**/style/*",
- "*.css",
- "*.less"
- ],
- "web-types": "lib/web-types.json"
- }
|