unfire
Version:
⚡️ Utilities for Firebase 🔥 built with Composition API, Typescript and ❤️
132 lines • 3.14 kB
JSON
{
"name": "unfire",
"version": "0.1.0-config-opt",
"description": "⚡️ Utilities for Firebase 🔥 built with Composition API, Typescript and ❤️",
"keywords": [
"firebase",
"firestore",
"firebase-auth",
"typescript",
"composition api",
"vue",
"vue 3",
"database-api",
"unplugin",
"vite",
"webpack",
"rollup",
"transform"
],
"homepage": "https://github.com/didavid61202/unfire#readme",
"bugs": {
"url": "https://github.com/didavid61202/unfire/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/didavid61202/unfire.git"
},
"funding": "https://github.com/sponsors/didavid61202",
"license": "MIT",
"author": "David Tai <didavid61202@gmail.com>",
"sideEffects": false,
"exports": {
".": {
"require": "./dist/index.cjs",
"import": "./dist/index.mjs"
},
"./*": "./*",
"./firestore": {
"require": "./dist/firebase/firestore.js",
"import": "./dist/firebase/firestore.mjs"
},
"./vue": {
"require": "./dist/vue/index.js",
"import": "./dist/vue/index.mjs"
},
"./vite": {
"require": "./dist/vite.js",
"import": "./dist/vite.mjs"
},
"./webpack": {
"require": "./dist/webpack.js",
"import": "./dist/webpack.mjs"
},
"./rollup": {
"require": "./dist/rollup.js",
"import": "./dist/rollup.mjs"
},
"./nuxt": {
"require": "./dist/nuxt.js",
"import": "./dist/nuxt.mjs"
},
"./types": {
"require": "./dist/types.js",
"import": "./dist/types.mjs"
}
},
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"typesVersions": {
"*": {
"firestore": [
"./dist/firebase/firestore.d.ts"
],
"vue": [
"./dist/vue/index.d.ts"
],
"*": [
"./dist/*"
]
}
},
"files": [
"dist",
"*.d.ts"
],
"devDependencies": {
"@antfu/eslint-config": "^0.11.1",
"@antfu/ni": "^0.11.0",
"@firebase/rules-unit-testing": "^2.0.2",
"@type-challenges/utils": "^0.1.1",
"@types/node": "^16.11.10",
"bumpp": "^7.1.1",
"c8": "^7.11.0",
"eslint": "^8.3.0",
"esno": "^0.12.1",
"happy-dom": "^2.31.1",
"tsup": "5.12.5",
"typescript": "^4.6.3",
"unbuild": "^0.5.13",
"vite": "^2.9.7",
"vitest": "^0.5.3",
"firebase": "^9.6.6"
},
"dependencies": {
"@antfu/utils": "^0.5.1",
"@types/minimatch": "^3.0.5",
"@vueuse/core": "^7.7.0",
"local-pkg": "^0.4.1",
"minimatch": "^3.0.4",
"unplugin": "^0.6.2",
"vue": "^3.2.33",
"zod": "^3.11.6"
},
"peerDependencies": {
"firebase": "^9.6.6"
},
"engines": {
"node": ">=14"
},
"scripts": {
"build": "tsup",
"dev": "tsup --watch src",
"stub": "unbuild --stub",
"emulator": "firebase emulators:start --only firestore",
"lint": "eslint \"{src,test}/**/*.ts\"",
"release": "bumpp --commit --push --tag && pnpm publish",
"start": "esno src/index.ts",
"test": "vitest",
"coverage": "vitest run --coverage"
}
}