UNPKG

unplugin-svelte-components

Version:
102 lines 2.51 kB
{ "name": "unplugin-svelte-components", "version": "0.3.1", "packageManager": "pnpm@8.6.2", "description": "Components auto importing for svelte", "homepage": "https://github.com/Mohamed-Kaizen/unplugin-svelte-components", "bugs": "https://github.com/Mohamed-Kaizen/unplugin-svelte-components/issues", "author": "Mohamed Nesredin<https://github.com/Mohamed-Kaizen>", "license": "MIT", "repository": { "type": "git", "url": "git+https://github.com/Mohamed-Kaizen/unplugin-svelte-components.git" }, "keywords": [ "unplugin", "vite", "webpack", "rollup", "esbuild", "auto-import", "svelte", "svelte-auto-import" ], "type": "module", "exports": { ".": { "import": "./index.js" }, "./vite": { "import": "./vite.js" }, "./webpack": { "import": "./webpack.js" }, "./rollup": { "import": "./rollup.js" }, "./esbuild": { "import": "./esbuild.js" }, "./types": { "import": "./types.js" }, "./*": "./*" }, "dependencies": { "@rollup/pluginutils": "^5.0.2", "chokidar": "^3.5.3", "fast-glob": "^3.2.12", "local-pkg": "^0.4.3", "magic-string": "^0.30.0", "minimatch": "^9.0.1", "resolve": "^1.22.1", "unplugin": "^1.3.1" }, "devDependencies": { "@types/minimatch": "^5.1.2", "@types/node": "^20.3.1", "@types/resolve": "^1.20.2", "@typescript-eslint/eslint-plugin": "^5.59.11", "@typescript-eslint/parser": "^5.59.11", "bumpp": "^7.1.1", "eslint": "^8.42.0", "eslint-config-prettier": "^8.8.0", "esno": "^0.16.3", "lint-staged": "^13.2.2", "pathe": "^1.1.1", "prettier": "^2.8.8", "rollup": "^3.25.1", "simple-git-hooks": "^2.8.1", "svelte": "^3.59.1 || ^4.0.0-next.0", "tsup": "^6.7.0", "typescript": "^5.1.3", "vite": "^4.3.9", "vitest": "^0.32.0" }, "simple-git-hooks": { "pre-commit": "npx lint-staged" }, "lint-staged": { "*.{js,ts,tsx}": [ "eslint --fix" ] }, "publishConfig": { "access": "public" }, "engines": { "node": ">=14" }, "scripts": { "build": "pnpm run clean && tsup", "dev": "pnpm run clean && tsup --watch src", "dev:link": "pnpm link ./", "clean": "esno scripts/clean.ts", "lint": "eslint .", "play:kit": "pnpm -C playground/kit run dev", "release": "bumpp --commit --push --tag", "test": "vitest", "install_hook": "pnpx simple-git-hooks" } }