biscuit-wasm 0.1.3

WebAssembly wrapper for Biscuit authorization tokens
Documentation
{
  "name": "@biscuit-auth/biscuit-wasm",
  "description": "WebAssembly wrapper for Biscuit authorization tokens",
  "version": "0.2.0",
  "license": "Apache-2.0",
  "repository": {
    "type": "git",
    "url": "https://github.com/biscuit-auth/biscuit-wasm"
  },
  "scripts": {
    "build-esm": "wasm-pack build --target bundler --out-dir module --out-name biscuit --scope biscuit-auth",
    "build-cjs": "wasm-pack build --target nodejs --out-dir dist --out-name biscuit --scope biscuit-auth",
    "remove-pkg-cruft": "rm module/package.json dist/package.json dist/.gitignore module/.gitignore dist/README.md module/README.md",
    "prepare-package": "npm run build-esm && npm run build-cjs && npm run remove-pkg-cruft && cp performance.js dist/snippets/*/inline0.js"
  },
  "files": [
    "module/biscuit_bg.wasm",
    "module/biscuit.js",
    "module/biscuit_bg.js",
    "module/biscuit.d.ts",
    "module/snippets",
    "dist/biscuit_bg.wasm",
    "dist/biscuit.js",
    "dist/biscuit_bg.js",
    "dist/biscuit.d.ts",
    "dist/snippets"
  ],
  "main": "dist/biscuit.js",
  "exports": {
    "require": "./dist/biscuit.js",
    "import": "./module/biscuit.js"
  },
  "module": "module/biscuit.js",
  "sideEffects": "false",
  "types": "dist/biscuit.d.ts"
}