Files
turso/bindings/wasm/package.json
Elijah Morgan 6bd40430bf Begin adding nodejs/web to a single npm package
Update build script to build both
Update package.json

Add basic test of node variant of npm package.
2025-01-16 21:28:29 -05:00

38 lines
808 B
JSON

{
"name": "limbo-wasm",
"collaborators": [
"the Limbo authors"
],
"version": "0.0.12",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/penberg/limbo"
},
"files": ["dist"],
"exports": {
".": {
"import": "./dist/web/index.js",
"require": "./dist/node/index.cjs"
}
},
"main": "./dist/node/index.cjs",
"types": "./dist/node/index.d.ts",
"type": "module",
"scripts": {
"dev": "vite",
"test": "vitest --sequence.shuffle=false",
"test:ui": "vitest --ui"
},
"devDependencies": {
"@playwright/test": "^1.49.1",
"@vitest/ui": "^2.1.8",
"happy-dom": "^16.3.0",
"playwright": "^1.49.1",
"vite": "^6.0.7",
"vite-plugin-wasm": "^3.4.1",
"vitest": "^2.1.8",
"wasm-pack": "^0.13.1"
}
}