-
Notifications
You must be signed in to change notification settings - Fork 31
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 2.72 KB
/
Copy pathpackage.json
File metadata and controls
96 lines (96 loc) · 2.72 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "bitset",
"title": "BitSet",
"version": "5.3.0",
"type": "commonjs",
"description": "Fast arbitrary-length and infinite-complement bit sets with ranges, iteration, and bitwise operations",
"homepage": "https://raw.org/article/javascript-bit-array/",
"bugs": "https://github.com/rawify/BitSet.js/issues",
"keywords": [
"bits",
"set",
"twiddle",
"bit-set",
"bit-array",
"bit-vector",
"bit-string",
"bitset",
"bitarray",
"bitvector",
"bitstring",
"binary",
"bitmap",
"bitwise"
],
"private": false,
"main": "./dist/bitset.js",
"module": "./dist/bitset.mjs",
"browser": "./dist/bitset.min.js",
"unpkg": "./dist/bitset.min.js",
"jsdelivr": "./dist/bitset.min.js",
"types": "./dist/bitset.d.ts",
"files": [
"dist",
"README.md",
"LICENSE"
],
"exports": {
".": {
"import": {
"types": "./dist/bitset.d.mts",
"default": "./dist/bitset.mjs"
},
"require": {
"types": "./dist/bitset.d.ts",
"default": "./dist/bitset.js"
},
"default": {
"types": "./dist/bitset.d.ts",
"default": "./dist/bitset.js"
}
},
"./browser": {
"import": {
"types": "./dist/bitset.d.mts",
"default": "./dist/bitset.min.mjs"
},
"default": "./dist/bitset.min.js"
},
"./package.json": "./package.json"
},
"sideEffects": false,
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/rawify/BitSet.js.git"
},
"funding": {
"type": "github",
"url": "https://github.com/sponsors/rawify"
},
"author": {
"name": "Robert Eisele",
"email": "robert@raw.org",
"url": "https://raw.org/"
},
"license": "MIT",
"directories": {
"test": "tests"
},
"scripts": {
"clean": "node scripts/clean.mjs",
"typecheck": "tsc --noEmit",
"build:types": "tsc -p tsconfig.build.json",
"build:js": "node scripts/build.mjs",
"build": "npm run clean && npm run build:types && npm run build:js",
"benchmark": "node benchmark/benchmark.js",
"test:types": "tsc -p tests/types/tsconfig.json",
"test:runtime": "node --test tests/*.test.js",
"test": "npm run build && npm run test:types && npm run test:runtime",
"prepublishOnly": "npm test"
},
"devDependencies": {
"esbuild": "^0.25.9",
"fastbitset": "^0.5.2",
"typescript": "^5.9.2"
}
}