-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
135 lines (135 loc) · 3.64 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
{
"name": "unjam",
"version": "0.3.2",
"description": "Unjam is a JavaScript and TypeScript library offering non-blocking versions of common array methods like forEach, map, and filter. Designed for cooperative multitasking, Unjam keeps your application responsive, even with large data processing tasks, by preventing the main thread from being blocked. Perfect for smooth and efficient JavaScript execution in web applications.",
"keywords": [
"non-blocking",
"cooperative multitasking",
"JavaScript",
"TypeScript",
"forEach",
"map",
"filter",
"array methods",
"performance",
"async",
"main thread",
"responsive",
"UI",
"background processing",
"multitasking",
"Unjam",
"web performance",
"large datasets"
],
"license": "MIT",
"author": {
"name": "Benjamín Guzmán López",
"email": "[email protected]"
},
"files": [
"dist"
],
"type": "module",
"types": "./dist/index.d.ts",
"module": "./dist/index.mjs",
"exports": {
".": {
"require": "./dist/index.cjs",
"import": "./dist/index.mjs"
},
"./chunk": {
"require": "./dist/chunk/index.cjs",
"import": "./dist/chunk/index.mjs"
},
"./compactMap": {
"require": "./dist/compactMap/index.cjs",
"import": "./dist/compactMap/index.mjs"
},
"./cooperate": {
"require": "./dist/cooperate/index.cjs",
"import": "./dist/cooperate/index.mjs"
},
"./every": {
"require": "./dist/every/index.cjs",
"import": "./dist/every/index.mjs"
},
"./filter": {
"require": "./dist/filter/index.cjs",
"import": "./dist/filter/index.mjs"
},
"./find": {
"require": "./dist/find/index.cjs",
"import": "./dist/find/index.mjs"
},
"./flatMap": {
"require": "./dist/flatMap/index.cjs",
"import": "./dist/flatMap/index.mjs"
},
"./for": {
"require": "./dist/for/index.cjs",
"import": "./dist/for/index.mjs"
},
"./forEach": {
"require": "./dist/forEach/index.cjs",
"import": "./dist/forEach/index.mjs"
},
"./groupBy": {
"require": "./dist/groupBy/index.cjs",
"import": "./dist/groupBy/index.mjs"
},
"./map": {
"require": "./dist/map/index.cjs",
"import": "./dist/map/index.mjs"
},
"./partition": {
"require": "./dist/partition/index.cjs",
"import": "./dist/partition/index.mjs"
},
"./reduce": {
"require": "./dist/reduce/index.cjs",
"import": "./dist/reduce/index.mjs"
},
"./some": {
"require": "./dist/some/index.cjs",
"import": "./dist/some/index.mjs"
},
"./unzip": {
"require": "./dist/unzip/index.cjs",
"import": "./dist/unzip/index.mjs"
},
"./while": {
"require": "./dist/while/index.cjs",
"import": "./dist/while/index.mjs"
},
"./zip": {
"require": "./dist/zip/index.cjs",
"import": "./dist/zip/index.mjs"
}
},
"main": "./dist/index.cjs",
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/therialguz/Unjam.git"
},
"scripts": {
"dev": "vite",
"prebuild": "npm run update-exports",
"build": "tsc && vite build",
"preview": "vite preview",
"test": "vitest",
"update-exports": "node scripts/update-exports.js",
"docs": "typedoc --out docs src",
"prepublishOnly": "npm run build && npm run docs",
"bench": "vitest bench --run"
},
"devDependencies": {
"@codspeed/vitest-plugin": "^3.1.1",
"@vitest/ui": "^2.1.4",
"typedoc": "^0.26.11",
"typescript": "~5.6.2",
"vite": "^5.4.10",
"vite-plugin-dts": "^4.3.0",
"vitest": "^2.1.4"
}
}