mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
41 lines
1.1 KiB
JSON
41 lines
1.1 KiB
JSON
{
|
|
"name": "@vant/use",
|
|
"version": "1.3.3",
|
|
"description": "Vant Composition API",
|
|
"main": "dist/cjs/index.js",
|
|
"module": "dist/esm/index.js",
|
|
"typings": "dist/index.d.ts",
|
|
"sideEffects": false,
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"scripts": {
|
|
"clean": "rimraf ./dist",
|
|
"dev": "rollup --config rollup.config.js --watch",
|
|
"build:types": "tsc -p ./tsconfig.json --emitDeclarationOnly",
|
|
"build:bundle": "rollup --config rollup.config.js",
|
|
"build": "pnpm clean && pnpm build:bundle && pnpm build:types",
|
|
"release": "pnpm build && release-it",
|
|
"prepare": "pnpm build"
|
|
},
|
|
"publishConfig": {
|
|
"access": "public",
|
|
"registry": "https://registry.npmjs.org/"
|
|
},
|
|
"license": "MIT",
|
|
"repository": "https://github.com/youzan/vant/tree/dev/packages/vant-use",
|
|
"devDependencies": {
|
|
"release-it": "^14.0.2",
|
|
"typescript": "4.x",
|
|
"rollup": "^2.33.3",
|
|
"rollup-plugin-esbuild": "^4.6.0",
|
|
"vue": "^3.2.20"
|
|
},
|
|
"release-it": {
|
|
"git": {
|
|
"tag": false,
|
|
"commitMessage": "release: @vant/use ${version}"
|
|
}
|
|
}
|
|
}
|