vue-global-events
Advanced tools
Comparing version 2.2.0 to 3.0.0
119
package.json
{ | ||
"name": "vue-global-events", | ||
"version": "2.2.0", | ||
"type": "module", | ||
"packageManager": "pnpm@8.6.5", | ||
"version": "3.0.0", | ||
"description": "Register global events using vue template shortcuts", | ||
"main": "dist/vue-global-events.cjs.js", | ||
"browser": "dist/vue-global-events.esm.js", | ||
"unpkg": "dist/vue-global-events.global.js", | ||
"jsdelivr": "dist/vue-global-events.global.js", | ||
"module": "dist/vue-global-events.esm-bundler.js", | ||
"types": "dist/vue-global-events.d.ts", | ||
"main": "./dist/index.mjs", | ||
"module": "./dist/index.mjs", | ||
"types": "./dist/index.d.ts", | ||
"unpkg": "./dist/index.global.js", | ||
"jsdelivr": "./dist/index.global.js", | ||
"exports": { | ||
".": { | ||
"types": "./dist/index.d.ts", | ||
"require": "./dist/index.cjs", | ||
"import": "./dist/index.mjs" | ||
} | ||
}, | ||
"sideEffects": false, | ||
"scripts": { | ||
"build": "rollup -c rollup.config.js", | ||
"build:dts": "api-extractor run --local --verbose", | ||
"release": "bash scripts/release.sh", | ||
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 1", | ||
"size": "size-limit", | ||
"lint": "prettier -c --parser typescript \"{src,__tests__,e2e}/**/*.[jt]s?(x)\"", | ||
"lint:fix": "yarn run lint --write", | ||
"test:types": "tsc --build tsconfig.json", | ||
"test:unit": "jest --coverage", | ||
"test": "yarn run test:types && yarn run test:unit && yarn run build && yarn run build:dts" | ||
}, | ||
"files": [ | ||
"dist/*.js", | ||
"dist/vue-global-events.d.ts", | ||
"dist", | ||
"LICENSE", | ||
"README.md" | ||
], | ||
"size-limit": [ | ||
{ | ||
"path": "size-check.js" | ||
} | ||
], | ||
"keywords": [ | ||
@@ -46,13 +36,13 @@ "vue", | ||
"author": { | ||
"name": "Damian Dulisz", | ||
"email": "damian.dulisz@gmail.com" | ||
"name": "Eduardo San Martin Morote", | ||
"email": "posva13@gmail.com" | ||
}, | ||
"contributors": [ | ||
{ | ||
"name": "Eduardo San Martin Morote", | ||
"email": "posva13@gmail.com" | ||
}, | ||
{ | ||
"name": "Damian Dulisz", | ||
"email": "damian.dulisz@gmail.com" | ||
}, | ||
{ | ||
"name": "Eduardo San Martin Morote", | ||
"email": "posva13@gmail.com" | ||
} | ||
@@ -62,23 +52,24 @@ ], | ||
"devDependencies": { | ||
"@microsoft/api-extractor": "7.9.11", | ||
"@rollup/plugin-alias": "^3.1.1", | ||
"@rollup/plugin-commonjs": "^15.0.0", | ||
"@rollup/plugin-node-resolve": "^9.0.0", | ||
"@rollup/plugin-replace": "^2.3.3", | ||
"@size-limit/preset-small-lib": "^4.5.7", | ||
"@types/jest": "^26.0.13", | ||
"@types/jsdom": "^16.2.4", | ||
"@vue/test-utils": "^2.0.0-beta.1", | ||
"codecov": "^3.7.2", | ||
"conventional-changelog-cli": "^2.1.0", | ||
"jest": "^26.4.2", | ||
"lint-staged": "^10.3.0", | ||
"prettier": "^2.1.1", | ||
"rollup": "^2.26.10", | ||
"rollup-plugin-terser": "^7.0.2", | ||
"rollup-plugin-typescript2": "^0.27.2", | ||
"size-limit": "^4.5.7", | ||
"ts-jest": "^26.3.0", | ||
"typescript": "^3.9.7", | ||
"vue": "^3.0.0-rc.5", | ||
"@posva/prompts": "^2.4.4", | ||
"@types/lodash-es": "^4.17.7", | ||
"@vitejs/plugin-vue": "^4.2.3", | ||
"@vitest/coverage-v8": "^0.32.2", | ||
"@vue/compiler-sfc": "^3.3.4", | ||
"@vue/test-utils": "^2.4.0", | ||
"@vueuse/core": "^10.2.0", | ||
"chalk": "^5.2.0", | ||
"conventional-changelog-cli": "^2.2.2", | ||
"execa": "^7.1.1", | ||
"happy-dom": "^9.20.3", | ||
"lint-staged": "^13.2.3", | ||
"lodash-es": "^4.17.21", | ||
"minimist": "^1.2.8", | ||
"p-series": "^3.0.0", | ||
"prettier": "^2.8.8", | ||
"semver": "^7.5.3", | ||
"typescript": "^5.1.5", | ||
"unbuild": "^1.2.1", | ||
"vite": "^4.3.9", | ||
"vitest": "^0.32.2", | ||
"vue": "^3.3.4", | ||
"yorkie": "^2.0.0" | ||
@@ -88,3 +79,3 @@ }, | ||
"pre-commit": "lint-staged", | ||
"commit-msg": "node scripts/verifyCommit.js" | ||
"commit-msg": "node scripts/verifyCommit.mjs" | ||
}, | ||
@@ -100,3 +91,3 @@ "lint-staged": { | ||
"peerDependencies": { | ||
"vue": "^3.0.0-beta.20" | ||
"vue": "^3.0.0" | ||
}, | ||
@@ -110,3 +101,17 @@ "repository": { | ||
}, | ||
"homepage": "https://github.com/shentao/vue-global-events#readme" | ||
} | ||
"homepage": "https://github.com/shentao/vue-global-events#readme", | ||
"dependencies": { | ||
"pkg-types": "^1.0.3" | ||
}, | ||
"scripts": { | ||
"build": "unbuild", | ||
"dev": "vite", | ||
"release": "node scripts/release.mjs", | ||
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 1", | ||
"lint": "prettier -c \"{src,scripts}/**/*.[jtm]s?(x)\" \"*.[mt]s\"", | ||
"lint:fix": "pnpm run lint --write", | ||
"test:types": "tsc --noEmit", | ||
"test:unit": "vitest --coverage", | ||
"test": "pnpm run test:types && pnpm run lint && pnpm run test:unit run && pnpm run build" | ||
} | ||
} |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
Environment variable access
Supply chain riskPackage accesses environment variables, which may be a sign of credential stuffing or data theft.
Found 1 instance in 1 package
0
Yes
24448
2
23
8
479
1
+ Addedpkg-types@^1.0.3
+ Addedacorn@8.14.0(transitive)
+ Addedconfbox@0.1.8(transitive)
+ Addedmlly@1.7.3(transitive)
+ Addedpathe@1.1.2(transitive)
+ Addedpkg-types@1.2.1(transitive)
+ Addedufo@1.5.4(transitive)