Files
bun.sh/packages/bun-wasm/package.json
jhmaster 117cee5ca5 bun-wasm fixes & improvements (#4126)
* automate Bun.version & revision polyfills

* polyfill Bun.gc

* bun:jsc module initial polyfills

* fixes & improvements to bun-wasm
2023-08-11 18:20:21 -07:00

36 lines
686 B
JSON

{
"name": "bun-wasm",
"version": "0.0.79",
"scripts": {
"build": "cd ../.. && make wasm",
"dev": "cd ../.. && make dev-wasm"
},
"devDependencies": {
"@types/node": "^20.4.10",
"peechy": "0.4.32",
"typescript": "latest"
},
"files": [
"bun.wasm",
"schema.d.ts",
"index.mjs",
"index.cjs",
"index.mjs.map",
"index.cjs.map",
"index.d.ts",
"schema.js"
],
"type": "module",
"types": "index.d.mts",
"exports": {
".": {
"import": "./index.mjs",
"require": "./index.cjs",
"default": "./index.mjs"
},
"./schema": "./schema.js",
"./wasm": "./bun.wasm",
"./bun.wasm": "./bun.wasm"
}
}