-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
44 lines (44 loc) · 1.18 KB
/
package.json
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
{
"name": "@sepiariver/unique-set",
"version": "2.0.3",
"description": "Extends the native Set class to deeply compare using fast-deep-equal, with optional Bloom filter optimization. This version exports 2 classes instead of a default, breaking b/c with version 1.",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.mts",
"exports": {
"require": "./dist/index.js",
"import": "./dist/index.mjs"
},
"scripts": {
"test": "npm run build && vitest basic.spec.ts",
"bench": "npm run build && vitest bench.spec.ts bench-nested.spec.ts",
"lint": "tsc",
"build": "tsup index.ts --format esm --dts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sepiariver/unique-set.git"
},
"keywords": [
"Set",
"unique",
"bloom",
"deep",
"compare",
"equal"
],
"author": "sepiariver",
"license": "MIT",
"bugs": {
"url": "https://github.com/sepiariver/unique-set/issues"
},
"homepage": "https://github.com/sepiariver/unique-set#readme",
"dependencies": {
"fast-deep-equal": "^3.1.3"
},
"devDependencies": {
"tsup": "^8.3.5",
"typescript": "^5.7.2",
"vitest": "^2.1.8"
}
}