@ly-js/automatic
Version:
automatic of vue
116 lines • 2.83 kB
JSON
{
"name": "@ly-js/automatic",
"version": "0.1.4",
"description": "automatic of vue",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"unpkg": "dist/ly-automatic.min.js",
"typings": "dist/types/index.d.ts",
"files": [
"dist",
"schema"
],
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"keywords": [
"ly",
"automatic"
],
"author": "liyu",
"license": "ISC",
"repository": {
"type": "git",
"url": "git+https://github.com/LYlanfeng/ly.git",
"directory": "packages/automatic"
},
"bugs": {
"url": "https://github.com/LYlanfeng/ly/issues"
},
"dependencies": {
"lodash-es": "^4.17.21",
"@ly-js/utils": "0.0.6"
},
"devDependencies": {
"@types/lodash-es": "^4.17.5",
"vue-router": "^4.0.14"
},
"peerDependencies": {
"vue": "^3.2.23",
"vue-router": ">=4.0.0"
},
"release-it": {
"git": {
"tag": true,
"tagName": "@ly-js/automatic_v${version}",
"commit": true,
"commitMessage": "release: @ly-js/automatic ${version}",
"push": false
},
"npm": {
"publish": false
},
"publishConfig": {
"access": "public"
},
"hooks": {
"after:bump": "npm run build",
"after:release": "echo Successfully released ${name} v${version} to ${repo.repository}."
},
"plugins": {
"@release-it/conventional-changelog": {
"preset": {
"name": "conventionalcommits",
"types": [
{
"type": "feat",
"section": "Features"
},
{
"type": "fix",
"section": "Bug Fixes"
},
{
"type": "chore",
"hidden": true
},
{
"type": "docs",
"hidden": true
},
{
"type": "style",
"hidden": true
},
{
"type": "refactor",
"hidden": true
},
{
"type": "perf",
"hidden": true
},
{
"type": "test",
"hidden": true
}
]
},
"infile": "./CHANGELOG.md",
"gitRawCommitsOpts": {
"grep": "@ly-js/automatic"
}
}
}
},
"scripts": {
"clean": "rimraf ./dist",
"dev": "cross-env NODE_ENV=development rollup --config rollup.config.js --watch",
"build:types": "tsc -p ./tsconfig.json --emitDeclarationOnly",
"build:lib": "node scripts/build.js",
"build:bundle": "cross-env NODE_ENV=production rollup --config rollup.config.js",
"build": "pnpm clean && pnpm build:bundle && pnpm build:types",
"release": "release-it"
}
}