mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-05 19:41:42 +08:00
43 lines
1.1 KiB
JSON
43 lines
1.1 KiB
JSON
{
|
|
"name": "@vant/popperjs",
|
|
"version": "1.0.1",
|
|
"description": "Precompiled popperjs core",
|
|
"main": "dist/cjs/index.js",
|
|
"module": "dist/esm/index.js",
|
|
"types": "lib/index.d.ts",
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"publishConfig": {
|
|
"access": "public",
|
|
"registry": "https://registry.npmjs.org/"
|
|
},
|
|
"scripts": {
|
|
"dev": "rollup --config rollup.config.js --watch",
|
|
"build": "rollup --config rollup.config.js && tsc -p ./tsconfig.json --emitDeclarationOnly",
|
|
"release": "npm run build && release-it"
|
|
},
|
|
"license": "MIT",
|
|
"repository": "https://github.com/youzan/vant/tree/dev/packages/vant-popperjs",
|
|
"dependencies": {
|
|
"@popperjs/core": "^2.5.4"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/runtime": "7.x",
|
|
"@rollup/plugin-babel": "^5.2.1",
|
|
"@rollup/plugin-node-resolve": "^10.0.0",
|
|
"release-it": "^14.2.2",
|
|
"rollup": "^2.33.3"
|
|
},
|
|
"browserslist": [
|
|
"Android >= 4.0",
|
|
"iOS >= 8"
|
|
],
|
|
"release-it": {
|
|
"git": {
|
|
"tag": false,
|
|
"commitMessage": "chore: release @vant/popperjs ${version}"
|
|
}
|
|
}
|
|
}
|