{
  "name": "typedfastbitset",
  "description": "Speed-optimized BitSet implementation for modern browsers and JavaScript engines, using typed arrays",
  "keywords": [
    "bitmap",
    "bitset",
    "performance"
  ],
  "version": "0.8.0",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/lemire/TypedFastBitSet.js.git"
  },
  "main": "lib/index.js",
  "types": "lib/index.d.ts",
  "scripts": {
    "build": "tsc -p tsconfig.build.json",
    "build:package": "tsc -p tsconfig.build.json --outDir lib",
    "check:types": "tsc",
    "test": "node --expose-gc ./node_modules/jest/bin/jest",
    "release": "npm run build:package && npm run test && release-it",
    "benchmark": "node benchmark/test.js",
    "benchmark:ablation": "node benchmark/ablation.js"
  },
  "license": "Apache-2.0",
  "bugs": {
    "url": "https://github.com/lemire/TypedFastBitSet.js/issues"
  },
  "homepage": "https://github.com/lemire/TypedFastBitSet.js#readme",
  "files": [
    "lib"
  ],
  "devDependencies": {
    "@types/jest": "^29.5.14",
    "jest": "^29.4.3",
    "release-it": "^15.6.0",
    "ts-jest": "^29.0.5",
    "ts-node": "^10.9.1",
    "typescript": "^5.7.0"
  },
  "author": "Daniel Lemire <lemire@gmail.com> (http://lemire.me/en/)"
}
