UNPKG

vite-jsconfig-paths

Version:

Vite resolver for JavaScript compilerOptions.paths

58 lines (57 loc) 1.35 kB
{ "name": "vite-jsconfig-paths", "version": "2.0.1", "description": "Vite resolver for JavaScript compilerOptions.paths", "main": "dist/index.js", "module": "dist/index.mjs", "exports": { "import": "./dist/index.mjs", "require": "./dist/index.js" }, "author": "EliezerSPP", "repository": "EliezerSPP/vite-tsconfig-paths", "license": "MIT", "scripts": { "clean": "rimraf dist/*", "dev": "yarn bundle --watch", "build": "yarn clean && yarn bundle", "bundle": "tsup src/index.ts --sourcemap --dts --format cjs,esm", "prepare": "yarn build", "test": "jest" }, "dependencies": { "debug": "^4.1.1", "globrex": "^0.1.2", "recrawl-sync": "^2.0.3", "tsconfig-paths": "^3.9.0" }, "devDependencies": { "@types/debug": "^4.1.5", "@types/globrex": "^0.1.0", "@types/jest": "^26.0.22", "@types/node": "^14.0.27", "esbuild": "^0.11.12", "esbuild-jest": "npm:@alloc/esbuild-jest@^0.3.6", "jest": "^26.6.3", "klona": "^2.0.4", "rimraf": "^3.0.2", "rollup": "^2.45.2", "tsup": "^4.10.1", "typescript": "^4.2.4", "vite": "*", "vite-jsconfig-paths": "link:." }, "peerDependencies": { "vite": ">2.0.0-0" }, "keywords": [ "vite", "resolver", "jsconfig", "paths" ], "files": [ "src", "dist" ] }