-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
85 lines (85 loc) · 2.13 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
{
"name": "@lzptec/concurrency",
"version": "3.3.5",
"description": "A Lightweight concurrency manager",
"author": "André Posso <admin@lzptec.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/LzpTec/concurrency.git"
},
"keywords": [
"Concurrency",
"Batch",
"typescript",
"javascript",
"async",
"backend",
"frontend"
],
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"scripts": {
"test": "ava",
"build": "tsup",
"prepublish": "pnpm run build",
"release": "commit-and-tag-version",
"release:major": "commit-and-tag-version --release-as major",
"release:minor": "commit-and-tag-version --release-as minor",
"release:patch": "commit-and-tag-version --release-as patch",
"release:alpha": "commit-and-tag-version --prerelease alpha",
"release:rc": "commit-and-tag-version --prerelease rc"
},
"devDependencies": {
"@ava/typescript": "^5.0.0",
"@types/node": "^20.14.10",
"ava": "6.1.3",
"commit-and-tag-version": "12.4.1",
"ts-node": "^10.9.2",
"tslib": "2.6.3",
"tsup": "8.1.0",
"typescript": "5.5.3"
},
"ava": {
"timeout": "30s",
"extensions": [
"ts"
],
"require": [
"ts-node/register"
]
},
"exports": {
".": {
"require": "./dist/index.js",
"import": "./dist/index.mjs",
"types": "./dist/index.d.ts"
},
"./batch": {
"require": "./dist/batch.js",
"import": "./dist/batch.mjs",
"types": "./dist/batch.d.ts"
},
"./concurrency": {
"require": "./dist/concurrency.js",
"import": "./dist/concurrency.mjs",
"types": "./dist/concurrency.d.ts"
},
"./throttle": {
"require": "./dist/throttle.js",
"import": "./dist/throttle.mjs",
"types": "./dist/throttle.d.ts"
},
"./semaphore": {
"require": "./dist/semaphore.js",
"import": "./dist/semaphore.mjs",
"types": "./dist/semaphore.d.ts"
},
"./lock": {
"require": "./dist/lock.js",
"import": "./dist/lock.mjs",
"types": "./dist/lock.d.ts"
}
}
}