UNPKG

vite-plugin-externals

Version:
60 lines (59 loc) 1.52 kB
{ "name": "vite-plugin-externals", "version": "0.6.2", "description": "externals plugin for vite", "author": "crcong", "repository": { "type": "git", "url": "https://github.com/crcong/vite-plugin-externals" }, "homepage": "https://github.com/crcong/vite-plugin-externals", "bugs": "https://github.com/crcong/vite-plugin-externals/issues", "license": "MIT", "scripts": { "dev": "tsc -w", "build": "pnpm lint:fix && rimraf dist && tsc && pnpm build:es", "build:es": "tsc --module ESNEXT --outDir dist/es", "lint:fix": "eslint --fix ./src/**/*.ts", "test": "vitest", "release": "pnpm build && bumpp --push --tag --commit && npm publish" }, "files": [ "dist", "index.d.ts" ], "keywords": [ "vite-plugin", "external", "externals" ], "types": "index.d.ts", "main": "dist/src/index.js", "module": "dist/es/src/index.js", "peerDependencies": { "vite": ">=2.0.0" }, "engines": { "node": "^14.18.0 || >=16.0.0" }, "devDependencies": { "@crcong/eslint-config-typescript": "^0.3.0", "@types/estree": "^0.0.48", "@types/fs-extra": "^9.0.12", "@types/node": "^17.0.45", "@types/ws": "^8.2.2", "bumpp": "^7.1.1", "eslint": "^8.0.1", "rimraf": "^3.0.2", "rollup": "^2.51.2", "typescript": "^4.8.3", "vite": "^2.7.1", "vitest": "^0.22.1" }, "dependencies": { "acorn": "^8.4.0", "es-module-lexer": "^0.4.1", "fs-extra": "^10.0.0", "magic-string": "^0.25.7" } }