forked from kyranet/veza
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.45 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
{
"name": "@sofidev/ipc",
"version": "1.2.3",
"description": "IPC/TCP Networking Utility to connect several processes with great speeds.",
"contributors": [
"Aura Román <[email protected]>",
"Parbez <[email protected]>",
"Voxelli <[email protected]>"
],
"license": "MIT",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"publishConfig": {
"access": "public"
},
"exports": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
},
"sideEffects": false,
"scripts": {
"prepack": "yarn build",
"lint": "eslint --cache --fix --ext ts src examples",
"format": "prettier --write . --cache",
"build": "tsup",
"typecheck": "tsc -p tsconfig.eslint.json"
},
"dependencies": {
"msgpackr": "^1.9.7"
},
"devDependencies": {
"@types/node": "^18.17.6",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"eslint": "^8.47.0",
"eslint-config-mahir": "^0.0.31",
"prettier": "^2.8.8",
"tsup": "^6.7.0",
"typescript": "^5.1.6"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Sofi-Tech/ipc.git"
},
"files": [
"dist/**/*.js*",
"dist/**/*.mjs*",
"dist/**/*.d*"
],
"engines": {
"node": ">=v16"
},
"keywords": [
"ipc",
"tcp",
"socket",
"veza",
"node-ipc",
"sofi"
],
"bugs": {
"url": "https://github.com/Sofi-Tech/ipc/issues"
},
"packageManager": "[email protected]"
}