source: node_modules/es-toolkit/package.json@ ba17441

Last change on this file since ba17441 was a762898, checked in by istevanoska <ilinastevanoska@…>, 5 months ago

Added visualizations

  • Property mode set to 100644
File size: 9.2 KB
Line 
1{
2 "name": "es-toolkit",
3 "version": "1.44.0",
4 "description": "A state-of-the-art, high-performance JavaScript utility library with a small bundle size and strong type annotations.",
5 "homepage": "https://es-toolkit.dev",
6 "bugs": "https://github.com/toss/es-toolkit/issues",
7 "repository": {
8 "type": "git",
9 "url": "https://github.com/toss/es-toolkit.git"
10 },
11 "license": "MIT",
12 "sideEffects": false,
13 "packageManager": "yarn@4.10.2",
14 "exports": {
15 ".": {
16 "import": {
17 "types": "./dist/index.d.mts",
18 "default": "./dist/index.mjs"
19 },
20 "require": {
21 "types": "./dist/index.d.ts",
22 "default": "./dist/index.js"
23 }
24 },
25 "./array": {
26 "import": {
27 "types": "./dist/array/index.d.mts",
28 "default": "./dist/array/index.mjs"
29 },
30 "require": {
31 "types": "./dist/array/index.d.ts",
32 "default": "./dist/array/index.js"
33 }
34 },
35 "./compat": {
36 "import": {
37 "types": "./dist/compat/index.d.mts",
38 "default": "./dist/compat/index.mjs"
39 },
40 "require": {
41 "types": "./dist/compat/index.d.ts",
42 "default": "./dist/compat/index.js"
43 }
44 },
45 "./compat/*": {
46 "default": {
47 "types": "./compat/*.d.ts",
48 "default": "./compat/*.js"
49 }
50 },
51 "./error": {
52 "import": {
53 "types": "./dist/error/index.d.mts",
54 "default": "./dist/error/index.mjs"
55 },
56 "require": {
57 "types": "./dist/error/index.d.ts",
58 "default": "./dist/error/index.js"
59 }
60 },
61 "./function": {
62 "import": {
63 "types": "./dist/function/index.d.mts",
64 "default": "./dist/function/index.mjs"
65 },
66 "require": {
67 "types": "./dist/function/index.d.ts",
68 "default": "./dist/function/index.js"
69 }
70 },
71 "./math": {
72 "import": {
73 "types": "./dist/math/index.d.mts",
74 "default": "./dist/math/index.mjs"
75 },
76 "require": {
77 "types": "./dist/math/index.d.ts",
78 "default": "./dist/math/index.js"
79 }
80 },
81 "./object": {
82 "import": {
83 "types": "./dist/object/index.d.mts",
84 "default": "./dist/object/index.mjs"
85 },
86 "require": {
87 "types": "./dist/object/index.d.ts",
88 "default": "./dist/object/index.js"
89 }
90 },
91 "./predicate": {
92 "import": {
93 "types": "./dist/predicate/index.d.mts",
94 "default": "./dist/predicate/index.mjs"
95 },
96 "require": {
97 "types": "./dist/predicate/index.d.ts",
98 "default": "./dist/predicate/index.js"
99 }
100 },
101 "./promise": {
102 "import": {
103 "types": "./dist/promise/index.d.mts",
104 "default": "./dist/promise/index.mjs"
105 },
106 "require": {
107 "types": "./dist/promise/index.d.ts",
108 "default": "./dist/promise/index.js"
109 }
110 },
111 "./string": {
112 "import": {
113 "types": "./dist/string/index.d.mts",
114 "default": "./dist/string/index.mjs"
115 },
116 "require": {
117 "types": "./dist/string/index.d.ts",
118 "default": "./dist/string/index.js"
119 }
120 },
121 "./util": {
122 "import": {
123 "types": "./dist/util/index.d.mts",
124 "default": "./dist/util/index.mjs"
125 },
126 "require": {
127 "types": "./dist/util/index.d.ts",
128 "default": "./dist/util/index.js"
129 }
130 },
131 "./package.json": "./package.json"
132 },
133 "files": [
134 "dist",
135 "compat",
136 "*.d.ts",
137 "array.js",
138 "compat.js",
139 "error.js",
140 "function.js",
141 "map.js",
142 "math.js",
143 "object.js",
144 "predicate.js",
145 "promise.js",
146 "set.js",
147 "string.js",
148 "util.js"
149 ],
150 "workspaces": [
151 "docs",
152 "benchmarks"
153 ],
154 "scripts": {
155 "bench": "vitest bench",
156 "build": "rollup -c rollup.config.mjs && ./.scripts/postbuild.sh",
157 "format": "prettier --write .",
158 "gen:bundle-size": "node ./.scripts/generate-bundle-size.mjs",
159 "lint": "eslint --config eslint.config.mjs",
160 "packlint": "packlint sort -R",
161 "prepack": "yarn build",
162 "test": "vitest --coverage --typecheck",
163 "transform": "jscodeshift -t ./.scripts/tests/transform-lodash-test.ts $0 && prettier --write $0",
164 "typecheck": "tsc --noEmit"
165 },
166 "devDependencies": {
167 "@arethetypeswrong/cli": "^0.15.3",
168 "@changesets/changelog-github": "^0.5.0",
169 "@changesets/cli": "^2.27.1",
170 "@eslint/js": "^9.9.0",
171 "@rollup/plugin-terser": "^0.4.4",
172 "@rollup/plugin-typescript": "^12.1.0",
173 "@trivago/prettier-plugin-sort-imports": "^4.3.0",
174 "@types/broken-link-checker": "^0",
175 "@types/eslint": "^9",
176 "@types/jscodeshift": "^0.12.0",
177 "@types/lodash": "^4.17.20",
178 "@types/node": "^22.7.4",
179 "@types/tar": "^6.1.13",
180 "@typescript-eslint/parser": "^8.26.1",
181 "@vitest/coverage-istanbul": "^2.1.2",
182 "@vitest/eslint-plugin": "^1.3.4",
183 "@vue/compiler-sfc": "^3.5.10",
184 "broken-link-checker": "^0.7.8",
185 "eslint": "^9.22.0",
186 "eslint-config-prettier": "^9.1.0",
187 "eslint-plugin-no-for-of-array": "^0.0.1",
188 "eslint-plugin-prettier": "^5.2.1",
189 "eslint-plugin-vue": "^9.28.0",
190 "execa": "^9.3.0",
191 "globals": "^15.9.0",
192 "happy-dom": "^16.7.3",
193 "jscodeshift": "^17.0.0",
194 "packlint": "^0.2.4",
195 "prettier": "^3.2.5",
196 "prettier-plugin-sort-re-exports": "^0.1.0",
197 "rollup": "^4.19.0",
198 "rollup-plugin-dts": "^6.1.1",
199 "tar": "^6",
200 "tslib": "^2.6.3",
201 "tsx": "^4.19.0",
202 "typescript": "^5.8.2",
203 "typescript-eslint": "^8.6.0",
204 "vercel": "^41.4.1",
205 "vitest": "^2.1.2"
206 },
207 "publishConfig": {
208 "access": "public",
209 "main": "./dist/index.js",
210 "browser": "./dist/browser.global.js",
211 "module": "./dist/index.mjs",
212 "exports": {
213 ".": {
214 "import": {
215 "types": "./dist/index.d.mts",
216 "default": "./dist/index.mjs"
217 },
218 "require": {
219 "types": "./dist/index.d.ts",
220 "default": "./dist/index.js"
221 }
222 },
223 "./array": {
224 "import": {
225 "types": "./dist/array/index.d.mts",
226 "default": "./dist/array/index.mjs"
227 },
228 "require": {
229 "types": "./dist/array/index.d.ts",
230 "default": "./dist/array/index.js"
231 }
232 },
233 "./compat": {
234 "import": {
235 "types": "./dist/compat/index.d.mts",
236 "default": "./dist/compat/index.mjs"
237 },
238 "require": {
239 "types": "./dist/compat/index.d.ts",
240 "default": "./dist/compat/index.js"
241 }
242 },
243 "./compat/*": {
244 "default": {
245 "types": "./compat/*.d.ts",
246 "default": "./compat/*.js"
247 }
248 },
249 "./error": {
250 "import": {
251 "types": "./dist/error/index.d.mts",
252 "default": "./dist/error/index.mjs"
253 },
254 "require": {
255 "types": "./dist/error/index.d.ts",
256 "default": "./dist/error/index.js"
257 }
258 },
259 "./function": {
260 "import": {
261 "types": "./dist/function/index.d.mts",
262 "default": "./dist/function/index.mjs"
263 },
264 "require": {
265 "types": "./dist/function/index.d.ts",
266 "default": "./dist/function/index.js"
267 }
268 },
269 "./math": {
270 "import": {
271 "types": "./dist/math/index.d.mts",
272 "default": "./dist/math/index.mjs"
273 },
274 "require": {
275 "types": "./dist/math/index.d.ts",
276 "default": "./dist/math/index.js"
277 }
278 },
279 "./object": {
280 "import": {
281 "types": "./dist/object/index.d.mts",
282 "default": "./dist/object/index.mjs"
283 },
284 "require": {
285 "types": "./dist/object/index.d.ts",
286 "default": "./dist/object/index.js"
287 }
288 },
289 "./predicate": {
290 "import": {
291 "types": "./dist/predicate/index.d.mts",
292 "default": "./dist/predicate/index.mjs"
293 },
294 "require": {
295 "types": "./dist/predicate/index.d.ts",
296 "default": "./dist/predicate/index.js"
297 }
298 },
299 "./promise": {
300 "import": {
301 "types": "./dist/promise/index.d.mts",
302 "default": "./dist/promise/index.mjs"
303 },
304 "require": {
305 "types": "./dist/promise/index.d.ts",
306 "default": "./dist/promise/index.js"
307 }
308 },
309 "./string": {
310 "import": {
311 "types": "./dist/string/index.d.mts",
312 "default": "./dist/string/index.mjs"
313 },
314 "require": {
315 "types": "./dist/string/index.d.ts",
316 "default": "./dist/string/index.js"
317 }
318 },
319 "./util": {
320 "import": {
321 "types": "./dist/util/index.d.mts",
322 "default": "./dist/util/index.mjs"
323 },
324 "require": {
325 "types": "./dist/util/index.d.ts",
326 "default": "./dist/util/index.js"
327 }
328 },
329 "./package.json": "./package.json"
330 },
331 "types": "./dist/index.d.ts"
332 },
333 "dependenciesMeta": {
334 "@trivago/prettier-plugin-sort-imports@4.3.0": {
335 "unplugged": true
336 },
337 "prettier-plugin-sort-re-exports@0.0.1": {
338 "unplugged": true
339 }
340 },
341 "react-native": "./dist/index.js",
342 "main": "./dist/index.js",
343 "browser": "./dist/browser.global.js",
344 "module": "./dist/index.mjs",
345 "types": "./dist/index.d.ts"
346}
Note: See TracBrowser for help on using the repository browser.