-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
47 lines (47 loc) · 1.09 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
45
46
47
{
"name": "js-sieve",
"version": "0.0.4",
"description": "SIEVE in JS, a modern efficient cache algorithm that is simpler than LRU, using FIFO 2Q.",
"main": "./dist/sieve.cjs",
"module": "./dist/sieve.js",
"types": "./dist/sieve.d.ts",
"directories": {
"test": "test"
},
"scripts": {
"test": "esno test/index.mts",
"bench": "esno bench/index.mts",
"build": "tsup sieve.mts --format esm,cjs --dts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kurtextrem/js-sieve.git#main"
},
"keywords": [
"cache",
"lru",
"sieve",
"fifo"
],
"author": "Jacob \"kurtextrem\" Groß",
"license": "MIT",
"bugs": {
"url": "https://github.com/kurtextrem/js-sieve/issues"
},
"homepage": "https://github.com/kurtextrem/js-sieve#readme",
"devDependencies": {
"@types/node": "^20.11.19",
"esno": "^4.0.0",
"obliterator": "^2.0.4",
"tinybench": "^2.5.1",
"tsup": "^8.0.1",
"typescript": "^5.3.3"
},
"dependencies": {
"@js-sdsl/link-list": "^4.4.2"
},
"type": "module",
"files": [
"dist/*"
]
}