-
-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
61 lines (61 loc) · 1.4 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
{
"name": "veza",
"version": "1.2.0",
"description": "IPC/TCP Networking Utility to connect several processes with great speeds.",
"author": "kyranet <[email protected]>",
"license": "MIT",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"sideEffects": false,
"homepage": "https://veza.js.org",
"scripts": {
"prepack": "yarn build",
"lint": "eslint --fix --ext ts src examples",
"format": "prettier --write .",
"update": "yarn upgrade-interactive",
"build": "tsc -b src",
"docs": "typedoc"
},
"dependencies": {
"binarytf": "^2.1.3"
},
"devDependencies": {
"@sapphire/eslint-config": "^5.0.2",
"@sapphire/prettier-config": "^2.0.0",
"@sapphire/ts-config": "^5.0.0",
"@types/node": "^20.8.9",
"@typescript-eslint/eslint-plugin": "^6.9.0",
"@typescript-eslint/parser": "^6.9.0",
"eslint": "^8.52.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.1",
"prettier": "^3.0.3",
"standard-version": "^9.5.0",
"typedoc": "^0.25.2",
"typescript": "^5.2.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kyranet/veza.git"
},
"files": [
"dist",
"!dist/.tsbuildinfo"
],
"engines": {
"node": ">=v14",
"npm": ">=7"
},
"keywords": [
"ipc",
"tcp",
"socket",
"veza",
"node-ipc"
],
"bugs": {
"url": "https://github.com/kyranet/veza/issues"
},
"prettier": "@sapphire/prettier-config",
"packageManager": "[email protected]"
}