vite-plugin-wat
Version:
A Vite plugin for WebAssembly Text Format.
61 lines • 1.43 kB
JSON
{
"name": "vite-plugin-wat",
"type": "module",
"version": "1.0.2",
"packageManager": "pnpm@7.12.2",
"description": "A Vite plugin for WebAssembly Text Format.",
"author": "mys1024",
"license": "MIT",
"homepage": "https://github.com/mys1024/vite-plugin-wat#readme",
"repository": {
"type": "git",
"url": "https://github.com/mys1024/vite-plugin-wat.git"
},
"bugs": {
"url": "https://github.com/mys1024/vite-plugin-wat/issues"
},
"keywords": [
"vite",
"vitejs",
"plugin",
"wat",
"wasm",
"WebAssembly"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.cjs",
"import": "./dist/index.js"
}
},
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"dependencies": {
"fs-extra": "^10.1.0",
"pathe": "^0.3.8",
"wabt": "^1.0.29"
},
"devDependencies": {
"@antfu/eslint-config-ts": "^0.27.0",
"@types/fs-extra": "^9.0.13",
"@types/node": "^18.7.23",
"@vitest/coverage-c8": "^0.23.4",
"eslint": "^8.24.0",
"tsup": "^6.2.3",
"typescript": "^4.8.4",
"vite": "^3.1.4",
"vitest": "^0.23.4"
},
"scripts": {
"build": "tsup src/index.ts --dts --format cjs,esm --clean",
"test": "vitest",
"test:cover": "vitest --coverage",
"lint": "eslint .",
"lint:fix": "eslint . --fix"
}
}