UNPKG

vite-plugin-dts-build

Version:

Fast .d.ts builds for Vite (worker + incremental) with optional dual ESM/CJS support.

70 lines 1.66 kB
{ "name": "vite-plugin-dts-build", "description": "Fast .d.ts builds for Vite (worker + incremental) with optional dual ESM/CJS support.", "version": "0.2.3", "license": "MIT", "repository": { "type": "git", "url": "git+https://github.com/black7375/vite-plugin-dts-build.git" }, "bugs": { "url": "https://github.com/black7375/vite-plugin-dts-build/issues" }, "homepage": "https://github.com/black7375/vite-plugin-dts-build#readme", "keywords": [ "vite", "plugin", "vite-plugin", "dts", "typescript", "tsc", "build", "incremental", "worker-thread", "performance", "declaration", "types" ], "type": "module", "typings": "./dist/esm/index.d.ts", "main": "./dist/cjs/index.cjs", "module": "./dist/esm/index.js", "exports": { ".": { "import": { "types": "./dist/esm/index.d.ts", "default": "./dist/esm/index.js" }, "require": { "types": "./dist/cjs/index.d.cts", "default": "./dist/cjs/index.cjs" } } }, "files": [ "README.md", "dist/" ], "scripts": { "build": "tsc --build tsconfig.compile.json && vite build", "test": "vitest run" }, "devDependencies": { "@types/fs-extra": "^11", "@types/node": "^22.15.18", "typescript": "^5.8.3", "vite": "^6.3.5", "vite-plugin-externalize-deps": "^0.9.0", "vite-tsconfig-paths": "^5.1.4", "vitest": "^3.2.4" }, "peerDependencies": { "typescript": "*", "vite": "*" }, "dependencies": { "@supercharge/promise-pool": "^3.2.0", "fs-extra": "^11.3.0" }, "packageManager": "yarn@4.9.1" }