vite-plugin-office-addin-bun
Version:
Office Add-ins development using Vite with Bun and Node.js support. Based on vite-plugin-office-addin by Jozef Izso.
48 lines (47 loc) • 1.1 kB
JSON
{
"name": "vite-plugin-office-addin-bun",
"version": "1.0.0",
"description": "Office Add-ins development using Vite with Bun and Node.js support. Based on vite-plugin-office-addin by Jozef Izso.",
"license": "MIT",
"author": "Sebastian Jara",
"files": [
"dist/*.js",
"dist/*.d.ts"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"build": "node build.mjs",
"test": "bun test",
"lint": "ultracite lint",
"format": "ultracite format --unsafe",
"prepublishOnly": "bun run build"
},
"devDependencies": {
"@biomejs/biome": "2.1.2",
"@types/bun": "^1",
"esbuild": "^0.24.0",
"typescript": "^5.9.2",
"ultracite": "5.1.2",
"vite": "^7.0.6"
},
"peerDependencies": {
"vite": ">=7.0.6"
},
"repository": {
"type": "git",
"url": "https://github.com/sebastianjg/bun-vite-plugin-office-addin.git"
},
"keywords": [
"bun",
"vite",
"vite-plugin",
"office-addin",
"vite-plugin-office-addin"
],
"private": false
}