mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
42 lines
1.0 KiB
JSON
42 lines
1.0 KiB
JSON
{
|
|
"name": "@vant/use",
|
|
"version": "1.3.2",
|
|
"description": "Vant Composition API",
|
|
"main": "dist/cjs/index.js",
|
|
"module": "dist/esm/index.js",
|
|
"typings": "dist/types/index.d.ts",
|
|
"sideEffects": false,
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"scripts": {
|
|
"clean": "rm -rf ./dist",
|
|
"build:lib": "node ./scripts/build.js",
|
|
"build:types": "tsc -p ./tsconfig.json --emitDeclarationOnly",
|
|
"build": "pnpm build:lib && 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": {
|
|
"@babel/core": "^7.12.9",
|
|
"@vant/cli": "workspace:*",
|
|
"fast-glob": "^3.2.7",
|
|
"fs-extra": "^10.0.0",
|
|
"release-it": "^14.0.2",
|
|
"typescript": "4.x",
|
|
"vue": "^3.2.20"
|
|
},
|
|
"release-it": {
|
|
"git": {
|
|
"tag": false,
|
|
"commitMessage": "release: @vant/use ${version}"
|
|
}
|
|
}
|
|
}
|