{
  "name": "type-checked-collections",
  "version": "0.1.7",
  "description": "Collections that actually type-check at runtime, not only in IDEs",
  "main": "./cjs/index.js",
  "scripts": {
    "build": "npm run cjs && npm run rollup:es && npm run rollup:index && npm run test",
    "cjs": "ascjs esm cjs",
    "rollup:es": "rollup --config rollup/es.config.js && sed -i.bck 's/^var /self./' es.js && rm -rf es.js.bck",
    "rollup:index": "rollup --config rollup/index.config.js",
    "test": "c8 node test/index.js",
    "coverage": "mkdir -p ./coverage; c8 report --reporter=text-lcov > ./coverage/lcov.info"
  },
  "keywords": [
    "typed",
    "validated",
    "runtime",
    "Map",
    "Set",
    "WeakMap",
    "WeakSet"
  ],
  "author": "Andrea Giammarchi",
  "license": "ISC",
  "devDependencies": {
    "@rollup/plugin-node-resolve": "^15.2.1",
    "@rollup/plugin-terser": "^0.4.3",
    "ascjs": "^6.0.2",
    "c8": "^8.0.1",
    "rollup": "^3.29.2"
  },
  "module": "./esm/index.js",
  "type": "module",
  "exports": {
    ".": {
      "import": "./esm/index.js",
      "default": "./cjs/index.js"
    },
    "./dummy": {
      "import": "./esm/dummy.js",
      "default": "./cjs/dummy.js"
    },
    "./package.json": "./package.json"
  },
  "unpkg": "es.js",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/WebReflection/type-checked-collections.git"
  },
  "bugs": {
    "url": "https://github.com/WebReflection/type-checked-collections/issues"
  },
  "homepage": "https://github.com/WebReflection/type-checked-collections#readme"
}
