-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.29 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.29 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
{
"name": "critical-section",
"version": "0.2.0",
"description": "A mutual exclusion library using objects as lock identifiers",
"keywords": [
"critical-section",
"mutex",
"synchronization",
"concurrency",
"lock",
"mutual-exclusion"
],
"homepage": "https://github.com/knowledgecode/critical-section#readme",
"bugs": {
"url": "https://github.com/knowledgecode/critical-section/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/knowledgecode/critical-section.git"
},
"license": "MIT",
"author": "KNOWLEDGECODE",
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"LICENSE",
"README.md",
"dist/**/*"
],
"sideEffects": false,
"scripts": {
"build": "rollup -c",
"build-watch": "rollup -c -w",
"lint": "eslint",
"prepublishOnly": "npm run build",
"test": "vitest run"
},
"devDependencies": {
"@rollup/plugin-terser": "^0.4.4",
"eslint": "^9.36.0",
"rollup": "^4.52.3",
"rollup-plugin-dts": "^6.2.3",
"rollup-plugin-esbuild": "^6.2.1",
"typescript-eslint": "^8.45.0",
"vitest": "^3.2.4"
}
}