UNPKG

vite-plugin-wasm-esm

Version:

ESM integration of wasm-pack generated modules with SSR support

47 lines 1.13 kB
{ "name": "vite-plugin-wasm-esm", "version": "1.0.3", "type": "module", "license": "MIT", "description": "ESM integration of wasm-pack generated modules with SSR support", "homepage": "https://github.com/omnysecurity/vite-plugin-wasm-esm", "repository": { "type": "git", "url": "https://github.com/omnysecurity/vite-plugin-wasm-esm.git" }, "keywords": [ "vite", "plugin", "vite-plugin", "wasm", "webassembly", "wasm-pack", "esm", "es-modules", "modules" ], "main": "./dist/index.js", "types": "./dist/index.d.ts", "files": [ "CHANGELOG.md", "dist/" ], "peerDependencies": { "vite": "5.x || 6.x" }, "devDependencies": { "@changesets/cli": "^2.28.1", "@types/node": "^22.13.4", "prettier": "^3.5.1", "tsup": "^8.3.6", "typescript": "^5.7.3", "vite": "^6.1.1" }, "scripts": { "dev": "tsup src/index.ts --format esm --dts --watch", "build": "tsup src/index.ts --format esm --dts", "lint": "prettier --check .", "format": "prettier --write .", "release": "pnpm build && changeset publish" } }