mirror of
https://github.com/aljazceru/turso.git
synced 2026-01-28 04:14:34 +01:00
src moved under web/ to make it cleaner build does less moving of files, mostly just moves the wasm-pack into dist for node and web
34 lines
671 B
JSON
34 lines
671 B
JSON
{
|
|
"name": "limbo-wasm",
|
|
"version": "0.0.11",
|
|
"workspaces": [
|
|
"node",
|
|
"web"
|
|
],
|
|
"files": [
|
|
"node",
|
|
"web"
|
|
],
|
|
"exports": {
|
|
"./node": {
|
|
"require": "./node/dist/index.js",
|
|
"types": "./node/dist/index.d.ts"
|
|
},
|
|
"./web": {
|
|
"import": "./web/dist/index.js",
|
|
"types": "./web/dist/index.d.ts"
|
|
},
|
|
"./web/limbo-worker.js": "./web/src/limbo-worker.js"
|
|
},
|
|
"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"
|
|
}
|
|
}
|