12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- {
- "name": "vite-plugin-dynamic-import",
- "version": "1.6.0",
- "description": "Enhance Vite builtin dynamic import",
- "main": "./dist/index.js",
- "types": "./dist/index.d.ts",
- "exports": {
- ".": {
- "types": "./dist/index.d.ts",
- "import": "./dist/index.mjs",
- "require": "./dist/index.js"
- },
- "./*": "./*"
- },
- "repository": {
- "type": "git",
- "url": "git+https://github.com/vite-plugin/vite-plugin-dynamic-import.git"
- },
- "author": "草鞋没号 <308487730@qq.com>",
- "license": "MIT",
- "scripts": {
- "dev": "vite build --watch",
- "build": "vite build",
- "test": "vitest run",
- "types": "tsc",
- "prepublishOnly": "npm run build && npm run test"
- },
- "dependencies": {
- "acorn": "^8.12.1",
- "es-module-lexer": "^1.5.4",
- "fast-glob": "^3.3.2",
- "magic-string": "^0.30.11"
- },
- "devDependencies": {
- "@ant-design/icons-svg": "^4.4.2",
- "@types/node": "^22.5.5",
- "node-fetch": "^3.3.2",
- "typescript": "^5.6.2",
- "vite": "^5.4.5",
- "vite-plugin-utils": "^0.4.3",
- "vitest": "^2.1.1"
- },
- "keywords": [
- "vite",
- "plugin",
- "import",
- "dynamic"
- ],
- "files": [
- "dist"
- ]
- }
|