-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
89 lines (89 loc) · 2.21 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
86
87
88
89
{
"name": "semafy",
"version": "2.2.0",
"description": "A robust cross-agent synchronization library.",
"license": "MIT",
"author": "Michael Rojas <dev.michael.rojas@gmail.com> (https://github.com/havelessbemore)",
"homepage": "https://github.com/havelessbemore/semafy",
"bugs": "https://github.com/havelessbemore/semafy/issues",
"sideEffects": false,
"engines": {
"node": ">= 18"
},
"type": "module",
"main": "./dist/semafy.cjs",
"module": "./dist/semafy.mjs",
"types": "./dist/semafy.d.ts",
"exports": {
".": {
"import": "./dist/semafy.mjs",
"require": "./dist/semafy.cjs",
"types": "./dist/semafy.d.ts"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/havelessbemore/semafy.git"
},
"files": [
"dist/",
"LICENSE",
"README.md"
],
"scripts": {
"build": "rimraf dist && tsc && rollup -c --configPlugin typescript",
"build:docs": "rimraf docs && typedoc",
"format": "prettier . --write",
"lint": "eslint .",
"prepare": "husky",
"prepublishOnly": "npm run lint && npm run test && npm run build",
"test": "jest",
"test:coverage": "jest --collect-coverage"
},
"keywords": [
"async",
"concurrent",
"condition variable",
"counting semaphore",
"lock",
"lock guard",
"lockable",
"multilock",
"mutex",
"parallel",
"recursive mutex",
"semaphore",
"shared lock",
"shared mutex",
"sync",
"threaded",
"timed mutex",
"web worker",
"worker"
],
"devDependencies": {
"@eslint/js": "^9.7.0",
"@rollup/plugin-typescript": "^11.1.6",
"@types/jest": "^29.5.12",
"esbuild": "^0.23.1",
"eslint": "^9.9.1",
"eslint-config-prettier": "^9.1.0",
"globals": "^15.9.0",
"husky": "^9.1.5",
"jest": "^29.7.0",
"lint-staged": "^15.2.9",
"prettier": "^3.3.3",
"rimraf": "^6.0.1",
"rollup": "^4.21.1",
"rollup-plugin-dts": "^6.1.1",
"rollup-plugin-esbuild": "^6.1.1",
"rollup-plugin-license": "^3.5.2",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"tslib": "^2.7.0",
"typedoc": "^0.26.6",
"typedoc-plugin-markdown": "^4.2.6",
"typescript": "^5.5.4",
"typescript-eslint": "^8.3.0"
}
}