-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.34 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
{
"name": "@lzptec/fast-ipc",
"version": "2.1.2",
"description": "Fast & simple IPC (Inter-Process Communication) server/client written on native net module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"type": "module",
"scripts": {
"prepare": "rm -rf ./dist && npm run build",
"test": "npm run prepare && ava test/test.js",
"ts-types": "tsc --emitDeclarationOnly --outDir ./dist",
"build": "npm run build:esm & npm run build:cjs & npm run ts-types",
"build:esm": "esbuild --target=es2019 --platform=node src/*.ts --outdir=dist --format=esm",
"build:cjs": "esbuild --target=es2019 --platform=node src/*.ts --outdir=dist --format=cjs --out-extension:.js=.cjs"
},
"files": [
"dist",
"*.d.ts",
"README.md"
],
"repository": {
"type": "git",
"url": "git+https://github.com/LzpTec/fast-ipc.git"
},
"engines": {
"node": ">=12.0.0"
},
"keywords": [
"ipc",
"net",
"fast",
"lightweight",
"socket"
],
"author": "lzptec",
"license": "MIT",
"homepage": "https://github.com/LzpTec/fast-ipc#readme",
"devDependencies": {
"@ava/typescript": "^2.0.0",
"@types/node": "^12.12.21",
"ava": "^3.15.0",
"esbuild": "^0.13.2",
"tslib": "^2.3.1",
"typescript": "^4.4.3"
},
"dependencies": {
"hyperid": "^2.3.1"
}
}