@wdns/vue-easter-egg-trigger
Version:
Presenting the Vue Easter Egg Trigger, a tool that discreetly injects a touch of unexpectedness into Vue.js projects. This unassuming plugin, which operates on both keystrokes (with click events also available), brings hidden surprises to your application
130 lines • 4.16 kB
JSON
{
"name": "@wdns/vue-easter-egg-trigger",
"version": "3.0.2",
"description": "Presenting the Vue Easter Egg Trigger, a tool that discreetly injects a touch of unexpectedness into Vue.js projects. This unassuming plugin, which operates on both keystrokes (with click events also available), brings hidden surprises to your applications.",
"private": false,
"publishConfig": {
"access": "public"
},
"main": "dist/vue-easter-egg-trigger.cjs.js",
"module": "dist/vue-easter-egg-trigger.es.js",
"types": "dist/plugin/types/index.d.ts",
"lint-staged": {
"src/**/*.{js,ts,vue}": [
"npm run lint"
]
},
"author": "WebDevNerdStuff & Bunnies... lots and lots of bunnies! <webdevnerdstuff@gmail.com> (https://webdevnerdstuff.com)",
"funding": [
{
"type": "paypal",
"url": "https://paypal.me/webdevnerdstuff"
},
{
"type": "patreon",
"url": "https://www.patreon.com/WebDevNerdStuff"
}
],
"license": "MIT",
"files": [
"dist/*",
"LICENSE.md",
"README.md"
],
"repository": "https://github.com/webdevnerdstuff/vue-easter-egg-trigger",
"bugs": {
"url": "https://github.com/webdevnerdstuff/vue-easter-egg-trigger/issues"
},
"homepage": "https://github.com/webdevnerdstuff/vue-easter-egg-trigger",
"keywords": [
"vue",
"vue3",
"javascript",
"easterEgg",
"easter egg",
"easter",
"egg",
"eggs",
"eggs",
"trigger",
"webdevnerdstuff",
"wdns"
],
"dependencies": {
"lodash": "^4.17.21",
"vue": "^3.3.9"
},
"devDependencies": {
"@fortawesome/fontawesome-svg-core": "^6.5.1",
"@fortawesome/free-brands-svg-icons": "^6.5.1",
"@fortawesome/free-regular-svg-icons": "^6.5.1",
"@fortawesome/free-solid-svg-icons": "^6.5.1",
"@fortawesome/vue-fontawesome": "^3.0.5",
"@mdi/font": "^7.3.67",
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-terser": "^0.4.4",
"@stylistic/stylelint-plugin": "^2.0.0",
"@types/lodash": "^4.14.202",
"@types/node": "^20.10.2",
"@typescript-eslint/eslint-plugin": "^6.13.1",
"@typescript-eslint/parser": "^6.13.1",
"@vitejs/plugin-vue": "^5.0.3",
"@vue/cli-plugin-eslint": "^5.0.8",
"@vue/cli-service": "^5.0.8",
"@vue/eslint-config-typescript": "^12.0.0",
"@vue/test-utils": "^2.4.3",
"@wdns/vue-code-block": "^2.3.1",
"autoprefixer": "^10.4.16",
"eslint": "^8.55.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-vue": "^9.19.2",
"gh-pages": "^6.1.0",
"husky": "^8.0.3",
"jsdom": "^23.2.0",
"lint-staged": "^15.0.2",
"pinia": "^2.1.7",
"postcss": "^8.4.32",
"postcss-html": "^1.5.0",
"postcss-scss": "^4.0.9",
"prettier": "^3.1.0",
"prismjs": "^1.29.0",
"roboto-fontface": "^0.10.0",
"rollup": "^4.9.4",
"rollup-plugin-polyfill-node": "^0.13.0",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-scss": "^4.0.0",
"rollup-plugin-typescript2": "^0.36.0",
"sass": "^1.69.5",
"stylelint": "^16.1.0",
"stylelint-config-standard": "^36.0.0",
"stylelint-order": "^6.0.2",
"stylelint-scss": "^6.0.0",
"typescript": "^5.3.2",
"unplugin-auto-import": "^0.17.1",
"vite": "^5.0.11",
"vite-plugin-dts": "^3.6.4",
"vite-plugin-eslint": "^1.8.1",
"vite-plugin-stylelint": "^5.2.1",
"vite-plugin-vuetify": "^2.0.1",
"vitest": "^1.2.1",
"vue-tsc": "^1.8.24",
"vuetify": "^3.4.4",
"webfontloader": "^1.6.28"
},
"scripts": {
"dev": "NODE_OPTIONS='--no-warnings' vite",
"watch": "pnpm dev",
"play": "sh src/playground/configs/build.sh && NODE_ENV=playground pnpm dev",
"build": "vue-tsc && vite build --config vite.build.config.mts",
"build:docs": "vite build",
"predeploy": "npm run build",
"deploy": "gh-pages -d docs",
"lint": "eslint src/**/*.{ts,vue} --max-warnings 4",
"test:dev": "NODE_OPTIONS='--no-warnings' vitest",
"test:all": "vitest --run",
"test:build": "vitest --run --bail 1"
}
}