UNPKG

@jihchi/vite-plugin-rescript

Version:

[![Workflows - CI][workflows-ci-shield]][workflows-ci-url] [![npm package][npm-package-shield]][npm-package-url] ![npm download per month][npm-download-shield] [![npm license][npm-licence-shield]](./LICENSE)

74 lines 1.65 kB
{ "name": "@jihchi/vite-plugin-rescript", "version": "7.0.0", "keywords": [ "rollup-plugin", "vite-plugin", "ReScript", "ReasonML", "BuckleScript" ], "homepage": "https://github.com/jihchi/vite-plugin-rescript", "repository": { "type": "git", "url": "https://github.com/jihchi/vite-plugin-rescript.git" }, "license": "MIT", "author": "jihchi", "type": "module", "exports": { ".": { "import": { "types": "./dist/index.d.ts", "default": "./dist/index.js" }, "require": { "types": "./dist/index.d.cts", "default": "./dist/index.cjs" } } }, "main": "./dist/index.cjs", "module": "./dist/index.js", "types": "./dist/index.d.ts", "files": [ "dist" ], "dependencies": { "chalk": "^5.4.1", "execa": "^9.5.1", "npm-run-path": "^6.0.0" }, "devDependencies": { "@biomejs/biome": "^1.7.1", "@sindresorhus/tsconfig": "^7.0.0", "@types/node": "^22.13.10", "@vitest/coverage-v8": "^2.1.4", "np": "*", "rimraf": "^6.0.1", "sort-package-json": "^3.0.0", "tsup": "^8.3.5", "typescript": "^5.8.2", "vite": "^6.2.2", "vitest": "^2.1.4" }, "peerDependencies": { "rescript": ">=9", "vite": ">=5.1.0" }, "engines": { "node": ">=18.0" }, "scripts": { "prebuild": "pnpm clean", "build": "tsup", "ci": "biome ci .", "clean": "rimraf dist", "format": "sort-package-json && biome format --write .", "lint": "biome lint .", "release": "np", "start": "pnpm build -- --watch", "test": "vitest run", "typecheck": "tsc" } }