mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
47 lines
1.2 KiB
JSON
47 lines
1.2 KiB
JSON
{
|
|
"name": "@vant/compat",
|
|
"version": "1.0.1",
|
|
"description": "Provide Vant 3 compatible behavior for Vant 4",
|
|
"main": "dist/index.cjs.js",
|
|
"module": "dist/index.esm.mjs",
|
|
"types": "dist/index.d.ts",
|
|
"exports": {
|
|
".": {
|
|
"import": "./dist/index.esm.mjs",
|
|
"require": "./dist/index.cjs.js"
|
|
}
|
|
},
|
|
"sideEffects": false,
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"publishConfig": {
|
|
"access": "public",
|
|
"registry": "https://registry.npmjs.org/"
|
|
},
|
|
"scripts": {
|
|
"clean": "rimraf ./dist",
|
|
"dev": "node ./build.js -w",
|
|
"build:types": "tsc -p ./tsconfig.json --emitDeclarationOnly",
|
|
"build:bundle": "node ./build.js",
|
|
"build": "pnpm clean && pnpm build:bundle && pnpm build:types",
|
|
"release": "vant-cli release"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/vant-ui/vant.git",
|
|
"directory": "packages/vant-compat"
|
|
},
|
|
"bugs": "https://github.com/vant-ui/vant/issues",
|
|
"author": "chenjiahan",
|
|
"license": "MIT",
|
|
"devDependencies": {
|
|
"@vue/runtime-core": "^3.4.29",
|
|
"vant": "workspace:*",
|
|
"vue": "^3.4.29",
|
|
"esbuild": "^0.20.2",
|
|
"rimraf": "^5.0.7",
|
|
"typescript": "^5.4.5"
|
|
}
|
|
}
|