generated from lilithmod/unborn-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
29 lines (29 loc) · 856 Bytes
/
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
{
"name": "@lilithmod/unborn-ipc",
"version": "1.2.1",
"description": "A very simple typescript wrapper to create a unix/windows socket and write data.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"/dist"
],
"scripts": {
"test": "tsc && concurrently --kill-others --names \"SERVER,CLIENT\" -c \"bgBlue.bold,bgMagenta.bold\" \"node dist/test\" \"node dist/testClient\"",
"test-nb": "concurrently --kill-others --names \"SERVER,CLIENT\" -c \"bgBlue.bold,bgMagenta.bold\" \"node dist/test\" \"node dist/testClient\""
},
"keywords": [],
"author": "ghqst",
"license": "ISC",
"dependencies": {
"fifo": "^2.4.1",
"xpipe": "^1.0.5"
},
"devDependencies": {
"@types/node": "^16.11.6",
"concurrently": "^7.5.0",
"typescript": "^4.6.2"
},
"engines": {
"node": ">=15.0.0"
}
}