[READ-ONLY] Mirror of https://github.com/danielroe/nuxt-emoji-blast.
0

Configure Feed

Select the types of activity you want to include in your feed.

nuxt-emoji-blast / package.json
1.5 kB 51 lines
1{ 2 "name": "nuxt-emoji-blast", 3 "version": "1.0.0", 4 "description": "My new Nuxt module", 5 "repository": "danielroe/nuxt-emoji-blast", 6 "license": "MIT", 7 "type": "module", 8 "exports": { 9 ".": { 10 "types": "./dist/types.d.ts", 11 "import": "./dist/module.mjs", 12 "require": "./dist/module.cjs" 13 } 14 }, 15 "main": "./dist/module.cjs", 16 "types": "./dist/types.d.ts", 17 "files": [ 18 "dist" 19 ], 20 "scripts": { 21 "prepack": "nuxt-module-build build", 22 "dev": "nuxi dev playground", 23 "dev:build": "nuxi build playground", 24 "dev:prepare": "nuxt-module-build build --stub && nuxt-module-build prepare && nuxi prepare playground", 25 "release": "npm run lint && npm run test && npm run prepack && changelogen --release && npm publish && git push --follow-tags", 26 "lint": "eslint .", 27 "test": "vitest run", 28 "test:watch": "vitest watch", 29 "test:types": "vue-tsc --noEmit && cd playground && vue-tsc --noEmit" 30 }, 31 "dependencies": { 32 "@nuxt/kit": "^3.11.2", 33 "defu": "^6.1.4", 34 "emoji-blast": "^0.10.0", 35 "konami-emoji-blast": "^0.5.3" 36 }, 37 "devDependencies": { 38 "@nuxt/devtools": "^1.1.5", 39 "@nuxt/eslint-config": "^0.3.6", 40 "@nuxt/module-builder": "^0.5.5", 41 "@nuxt/schema": "^3.11.2", 42 "@nuxt/test-utils": "^3.12.0", 43 "@types/node": "^20.12.7", 44 "changelogen": "^0.5.5", 45 "eslint": "^9.0.0", 46 "nuxt": "^3.11.2", 47 "typescript": "latest", 48 "vitest": "^1.4.0", 49 "vue-tsc": "^2.0.14" 50 } 51}