-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 1.94 KB
/
Copy pathpackage.json
File metadata and controls
86 lines (86 loc) · 1.94 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
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
{
"name": "mutex-server",
"version": "0.6.1",
"description": "Mutex Server using WebSocket",
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"exports": {
".": {
"types": "./lib/index.d.ts",
"require": "./lib/index.js",
"import": "./lib/index.mjs"
}
},
"scripts": {
"build": "npm run build:main && npm run build:test",
"build:main": "rimraf lib && tsc && rollup -c",
"build:test": "rimraf bin && tsc --project test/tsconfig.json",
"dev": "npm run build:test -- --watch",
"prepare": "ts-patch install",
"prettier": "prettier src --write && prettier test --write",
"test": "node bin/test"
},
"repository": {
"type": "git",
"url": "https://github.com/samchon/mutex"
},
"keywords": [
"mutex",
"semaphore",
"condition",
"variable",
"latch",
"barrier",
"write",
"read",
"unique",
"shared",
"lock",
"acquire",
"server",
"remote",
"critical",
"section",
"thread",
"tstl",
"tgrid"
],
"author": {
"name": "Jeongho Nam",
"email": "samchon.github@gmail.com",
"url": "https://github.com/samchon"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/samchon/mutex/issues"
},
"homepage": "https://github.com/samchon/mutex",
"devDependencies": {
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^11.1.6",
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/cli": "^0.11.19",
"@types/node": "^13.11.1",
"cli": "^1.0.1",
"prettier": "^3.2.5",
"rimraf": "^3.0.2",
"rollup": "^4.13.1",
"source-map-support": "^0.5.16",
"ts-node": "^8.8.2",
"ts-patch": "^3.1.2",
"tslib": "^2.6.2",
"typedoc": "^0.25.12",
"typescript": "5.4.5",
"typescript-transform-paths": "^3.4.7"
},
"dependencies": {
"tgrid": "^1.0.1",
"tstl": "^3.0.0"
},
"files": [
"LICENSE",
"README.md",
"lib",
"src"
]
}