aboutsummaryrefslogtreecommitdiff
path: root/packages/bun-wasm/package.json
blob: 5f3234e408e37fb4a08b770983f1f47b3c8a89e9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
{
  "name": "bun-wasm",
  "version": "0.0.79",
  "devDependencies": {
    "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.ts",
  "exports": {
    ".": {
      "import": "./index.mjs",
      "require": "./index.cjs",
      "default": "./index.mjs"
    },
    "./schema": "./schema.js",
    "./wasm": "./bun.wasm",
    "./bun.wasm": "./bun.wasm"
  }
}