82 lines
2.0 KiB
JSON
82 lines
2.0 KiB
JSON
{
|
|
"name": "bitmap-index",
|
|
"private": false,
|
|
"version": "1.0.9",
|
|
"description": "A small, zero-dependency bitmap/bitset implementation for fast index operations (and, or, xor, etc.)",
|
|
"license": "MIT",
|
|
"author": "yazmeyaa",
|
|
"homepage": "https://github.com/yazmeyaa/bitmap-index#readme",
|
|
"bugs": {
|
|
"url": "https://github.com/yazmeyaa/bitmap-index/issues"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/yazmeyaa/bitmap-index.git"
|
|
},
|
|
"main": "./dist/index.umd.cjs",
|
|
"module": "./dist/index.js",
|
|
"types": "./dist/index.d.ts",
|
|
"files": [
|
|
"dist",
|
|
"LICENSE",
|
|
"README.md"
|
|
],
|
|
"type": "module",
|
|
"sideEffects": false,
|
|
"engines": {
|
|
"node": ">=16"
|
|
},
|
|
"exports": {
|
|
".": {
|
|
"import": "./dist/index.js",
|
|
"require": "./dist/index.umd.cjs"
|
|
},
|
|
"./package.json": "./package.json"
|
|
},
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"keywords": [
|
|
"bitmap",
|
|
"bitset",
|
|
"bitmap-index",
|
|
"index",
|
|
"bit",
|
|
"typescript",
|
|
"javascript"
|
|
],
|
|
"scripts": {
|
|
"dev": "vite",
|
|
"build": "tsc && vite build",
|
|
"preview": "vite preview",
|
|
"predeploy": "npm run dist",
|
|
"lint": "eslint src --ext .ts",
|
|
"lint:fix": "eslint src --ext .ts --fix",
|
|
"format": "prettier --write ./src/**/*.ts",
|
|
"test": "jest",
|
|
"bench": "tsx ./bench/all.ts"
|
|
},
|
|
"devDependencies": {
|
|
"@jest/globals": "^29.7.0",
|
|
"@rollup/plugin-typescript": "^11.1.6",
|
|
"@types/jest": "^29.5.12",
|
|
"@types/node": "^20.14.9",
|
|
"@typescript-eslint/eslint-plugin": "^7.15.0",
|
|
"@typescript-eslint/parser": "^7.15.0",
|
|
"eslint": "^9.6.0",
|
|
"eslint-config-prettier": "^9.1.0",
|
|
"jest": "^29.7.0",
|
|
"prettier": "^3.3.2",
|
|
"rollup-plugin-typescript-paths": "^1.5.0",
|
|
"tinybench": "^6.0.0",
|
|
"ts-jest": "^29.3.1",
|
|
"tslib": "^2.6.3",
|
|
"tsx": "^4.21.0",
|
|
"typescript": "^5.5.3",
|
|
"vite": "^5.3.3",
|
|
"vite-plugin-dts": "^3.9.1",
|
|
"vite-tsconfig-paths": "^4.3.2"
|
|
},
|
|
"dependencies": {}
|
|
}
|