123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126 |
- {
- "name": "unplugin-auto-import",
- "type": "module",
- "version": "0.11.2",
- "packageManager": "pnpm@7.1.1",
- "description": "Register global imports on demand for Vite and Webpack",
- "author": "Anthony Fu <anthonyfu117@hotmail.com>",
- "license": "MIT",
- "funding": "https://github.com/sponsors/antfu",
- "homepage": "https://github.com/antfu/unplugin-auto-import#readme",
- "repository": {
- "type": "git",
- "url": "git+https://github.com/antfu/unplugin-auto-import.git"
- },
- "bugs": {
- "url": "https://github.com/antfu/unplugin-auto-import/issues"
- },
- "keywords": [
- "unplugin",
- "vite",
- "webpack",
- "rollup",
- "auto-import",
- "transform"
- ],
- "sideEffects": false,
- "exports": {
- ".": {
- "types": "./dist/index.d.ts",
- "require": "./dist/index.cjs",
- "import": "./dist/index.js"
- },
- "./*": "./*",
- "./nuxt": {
- "types": "./dist/nuxt.d.ts",
- "require": "./dist/nuxt.cjs",
- "import": "./dist/nuxt.js"
- },
- "./rollup": {
- "types": "./dist/rollup.d.ts",
- "require": "./dist/rollup.cjs",
- "import": "./dist/rollup.js"
- },
- "./types": {
- "types": "./dist/types.d.ts",
- "require": "./dist/types.cjs",
- "import": "./dist/types.js"
- },
- "./vite": {
- "types": "./dist/vite.d.ts",
- "require": "./dist/vite.cjs",
- "import": "./dist/vite.js"
- },
- "./webpack": {
- "types": "./dist/webpack.d.ts",
- "require": "./dist/webpack.cjs",
- "import": "./dist/webpack.js"
- },
- "./esbuild": {
- "types": "./dist/esbuild.d.ts",
- "require": "./dist/esbuild.cjs",
- "import": "./dist/esbuild.js"
- }
- },
- "main": "dist/index.cjs",
- "module": "dist/index.js",
- "types": "dist/index.d.ts",
- "typesVersions": {
- "*": {
- "*": [
- "./dist/*"
- ]
- }
- },
- "files": [
- "dist",
- "*.d.ts"
- ],
- "engines": {
- "node": ">=14"
- },
- "peerDependencies": {
- "@vueuse/core": "*"
- },
- "peerDependenciesMeta": {
- "@vueuse/core": {
- "optional": true
- }
- },
- "dependencies": {
- "@antfu/utils": "^0.5.2",
- "@rollup/pluginutils": "^4.2.1",
- "local-pkg": "^0.4.2",
- "magic-string": "^0.26.2",
- "unimport": "^0.6.7",
- "unplugin": "^0.9.3"
- },
- "devDependencies": {
- "@antfu/eslint-config": "^0.26.1",
- "@antfu/ni": "^0.17.2",
- "@types/node": "^18.7.6",
- "@types/resolve": "^1.20.2",
- "@vueuse/metadata": "^9.1.0",
- "bumpp": "^8.2.1",
- "eslint": "^8.22.0",
- "esno": "^0.16.3",
- "fast-glob": "^3.2.11",
- "rollup": "^2.78.0",
- "tsup": "^6.2.2",
- "typescript": "^4.7.4",
- "vite": "^3.0.8",
- "vitest": "^0.22.1",
- "webpack": "^5.74.0"
- },
- "scripts": {
- "build": "tsup src/*.ts --format cjs,esm --dts --splitting --clean && esno scripts/postbuild.ts",
- "dev": "tsup src/*.ts --watch src",
- "lint": "eslint .",
- "lint:fix": "nr lint --fix",
- "play": "npm -C playground run dev",
- "release": "bumpp --commit --push --tag && pnpm publish",
- "start": "esno src/index.ts",
- "test": "vitest",
- "test:run": "vitest run"
- }
- }
|