-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.11 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
{
"name": "port_agent",
"version": "1.4.0",
"description": "A RPC-like facility for making inter-thread function calls.",
"main": "./dist/index.js",
"scripts": {
"clean": "rm -rf ./dist/*",
"build": "tsc --build .",
"clean:build": "npm run clean && npm run build",
"test": "npm run clean:build && cd tests/test && npm run build && node .",
"watch": "tsc --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/faranalytics/port_agent.git"
},
"author": "FAR",
"license": "MIT",
"bugs": {
"url": "https://github.com/faranalytics/port_agent/issues"
},
"homepage": "https://github.com/faranalytics/port_agent#readme",
"devDependencies": {
"@types/node": "^20.3.1",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"eslint": "^8.44.0",
"nodemon": "^2.0.22",
"typescript": "^5.1.6"
},
"keywords": [
"api",
"concurrency",
"ipc",
"marshal",
"multithreaded",
"multithreading",
"parallelism",
"rpc",
"scalable",
"thread",
"threads",
"web",
"worker"
]
}