123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- {
- "name": "vite-plugin-commonjs",
- "version": "0.10.4",
- "description": "A pure JavaScript implementation of CommonJs",
- "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-commonjs.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",
- "magic-string": "^0.30.11",
- "vite-plugin-dynamic-import": "^1.6.0"
- },
- "devDependencies": {
- "@types/node": "^22.5.2",
- "fast-glob": "^3.3.2",
- "node-fetch": "^3.3.2",
- "typescript": "^5.6.2",
- "vite": "^4.4.5",
- "vite-plugin-utils": "^0.4.5",
- "vitest": "^2.1.1"
- },
- "keywords": [
- "vite",
- "plugin",
- "commonjs",
- "require"
- ],
- "files": [
- "dist"
- ]
- }
|