-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.21 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.21 KB
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
{
"name": "@alexandermzchiu/singleflight",
"version": "0.0.1",
"description": "singleflight is a utility that prevents duplicate asynchronous operations by ensuring that only one execution per unique key is in progress at a time, reducing redundant processing and improving efficiency.",
"author": "Alexander Zhao <alexandermzchiu@gmail.com>",
"repository": {
"type": "git",
"url": "git@github.com:ChiuMungZitAlexander/singleflight.git"
},
"license": "MIT",
"packageManager": "pnpm@10.11.0",
"engines": {
"node": "^22.0.0"
},
"files": [
"dist"
],
"type": "module",
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"types": "dist/types/index.d.ts",
"scripts": {
"build": "rm -rf dist && rollup -c",
"test": "jest"
},
"keywords": [],
"devDependencies": {
"@babel/preset-env": "^7.27.2",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-commonjs": "^28.0.3",
"@rollup/plugin-node-resolve": "^16.0.1",
"@rollup/plugin-typescript": "^12.1.2",
"@types/jest": "^29.5.14",
"jest": "^29.7.0",
"rollup": "^4.40.2",
"rollup-plugin-typescript2": "^0.36.0",
"ts-jest": "^29.3.4",
"tslib": "^2.8.1",
"typescript": "^5.8.3"
}
}