-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.28 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.28 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
{
"name": "fast-boolean-array",
"version": "2.0.0",
"homepage": "https://github.com/UltraCakeBakery/FastBooleanArray",
"repository": {
"type": "git",
"url": "git+https://github.com/UltraCakeBakery/FastBooleanArray.git"
},
"bugs": {
"url": "https://github.com/UltraCakeBakery/FastBooleanArray/issues",
"email": "fast-boolean-array@managing.software"
},
"type": "module",
"main": "./dist/index.mjs",
"types": "./dist/index.d.mts",
"exports": {
".": {
"types": "./dist/index.d.mts",
"import": "./dist/index.mjs"
}
},
"scripts": {
"test": "vitest",
"bench": "node bench.js",
"build": "npx tsdown src/index.ts --dts --clean --sourcemap --minify --target node26",
"publish": "npm publish"
},
"keywords": [
"boolean",
"array",
"fast",
"efficient",
"map"
],
"author": "Jack van der Bil <jack@managing.software> (https://jackvanderbilt.nl)",
"license": "MIT",
"description": "A fast and memory-efficient JavaScript array alternative for storing Boolean's, enabling fast indexing and retrieval.",
"engines": {
"node": ">=26.0.0"
},
"devDependencies": {
"@types/node": "^25.9.1",
"fast-boolean-array": "^1.7.1",
"tsdown": "^0.22.1",
"typescript": "^6.0.3",
"vitest": "^4.1.8"
}
}