-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.36 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
{
"name": "mutex-ts",
"version": "1.0.3",
"description": "This package provides two classes for managing locks: `Mutex` and `MutexRW`. These locks can be used to control access to critical sections in a multi-threaded or asynchronous environment.",
"author": "Dmitrii Baranov <dmitrii.a.baranov@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/orimay/mutex-ts.git"
},
"bugs": {
"url": "https://github.com/orimay/mutex-ts/issues"
},
"keywords": [
"mutex",
"synchronized",
"synchronization",
"async",
"typescript",
"lock",
"concurrency"
],
"type": "module",
"main": "./dist/index",
"module": "./dist/index",
"types": "./dist/index",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.umd.cjs",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist"
],
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"test": "vitest"
},
"devDependencies": {
"@types/node": "^20.8.10",
"@typescript-eslint/eslint-plugin": "^6.9.1",
"@typescript-eslint/parser": "^6.9.1",
"eslint": "^8.52.0",
"eslint-config-prettier": "^9.0.0",
"prettier": "^3.0.3",
"typescript": "^5.0.2",
"vite": "^4.4.5",
"vite-plugin-dts": "^3.6.3",
"vitest": "^0.34.6"
}
}