-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
84 lines (84 loc) · 1.83 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
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
{
"name": "lfi",
"version": "3.8.0",
"author": {
"name": "Tomer Aberbach",
"email": "[email protected]",
"url": "https://tomeraberba.ch"
},
"description": "A lazy functional iteration library supporting sync, async, and concurrent iteration.",
"keywords": [
"generator",
"lazy",
"iteration",
"iterable",
"iterator",
"iter",
"functional",
"concurrency",
"promise",
"async"
],
"homepage": "https://github.com/TomerAberbach/lfi",
"repository": "TomerAberbach/lfi",
"bugs": {
"url": "https://github.com/TomerAberbach/lfi/issues"
},
"license": "Apache-2.0 AND MIT",
"files": [
"dist",
"license-apache",
"license-mit",
"notice-apache"
],
"type": "module",
"sideEffects": false,
"engines": {
"node": ">= 18"
},
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.min.js"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.min.cjs"
}
}
},
"types": "./dist/index.d.ts",
"main": "./dist/index.min.cjs",
"module": "./dist/index.min.js",
"scripts": {
"format": "tomer format",
"lint": "tomer lint",
"typecheck": "tomer typecheck",
"test": "tomer test",
"build": "tomer build",
"clean": "tomer clean dist",
"prepublishOnly": "tomer build"
},
"prettier": "tomer/prettier",
"terser": {
"mangle": {
"properties": {
"regex": "^_[^_]+"
}
}
},
"devDependencies": {
"@fast-check/vitest": "^0.1.4",
"@vitest/coverage-v8": "^2.1.6",
"betterator": "^2.0.2",
"eslint": "~9.15.0",
"prettier": "^3.4.1",
"prettier-plugin-tailwindcss": "^0.6.9",
"svkc": "^1.0.0",
"tomer": "^6.1.0",
"typedoc": "^0.27.1",
"typescript": "^5.7.2",
"vitest": "^2.1.6"
}
}