-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.38 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.38 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
{
"name": "p-singleflight",
"version": "1.0.0",
"description": "Deduplicate concurrent async operations by sharing the same in-flight Promise",
"keywords": [
"singleflight",
"dedupe",
"async",
"promise",
"inflight"
],
"license": "MIT",
"files": [
"dist"
],
"type": "module",
"main": "./dist/cjs/index.cjs",
"module": "./dist/esm/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.cjs"
}
},
"publicConfig": {
"access": "public"
},
"scripts": {
"fmt": "oxfmt",
"fmt:check": "oxfmt --check",
"fmt-staged": "oxfmt --no-error-on-unmatched-pattern",
"lint": "oxlint .",
"lint:fix": "oxlint --fix",
"lint-staged": "oxlint .",
"lint:github": "oxlint --format=github",
"prepare": "husky",
"build": "rm -rf build && rolldown -c",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"prepublishOnly": "pnpm run build"
},
"devDependencies": {
"@types/node": "^25.5.0",
"@vitest/coverage-v8": "^4.1.2",
"husky": "^9.1.7",
"oxfmt": "^0.42.0",
"oxlint": "^1.57.0",
"rolldown": "1.0.0-rc.12",
"rolldown-plugin-dts": "^0.23.2",
"ts-node": "^10.9.2",
"typescript": "^6.0.2",
"vitest": "^4.1.2"
},
"packageManager": "pnpm@10.28.2"
}