{
  "name": "number-precision-wasm",
  "description": "Perform addition, subtraction, multiplication and division operations precisely using javascript",
  "version": "0.1.0",
  "private": false,
  "type": "module",
  "main": "dist/release.js",
  "types": "dist/release.d.ts",
  "author": "wang",
  "keywords": [
    "number precision",
    "floating problem",
    "rounding error"
  ],
  "repository": {
    "type": "git",
    "url": "https://github.com/miss7cd/number-precision-wasm.git"
  },
  "bugs": {
    "url": "https://github.com/miss7cd/number-precision-wasm/issues"
  },
  "homepage": "https://github.com/miss7cd/number-precision-wasm",
  "license": "MIT",
  "exports": {
    ".": {
      "import": "./dist/release.js",
      "types": "./dist/release.d.ts"
    }
  },
  "scripts": {
    "debug": "asc assembly/index.ts --target debug",
    "build": "asc assembly/index.ts --target release",
    "asbuild:debug": "asc assembly/index.ts --target debug",
    "asbuild:release": "asc assembly/index.ts --target release",
    "asbuild": "npm run asbuild:debug && npm run asbuild:release",
    "test": "node tests",
    "start": "npx serve ."
  },
  "devDependencies": {
    "assemblyscript": "^0.28.2"
  }
}
