-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.18 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
{
"name": "port_agent",
"version": "1.4.5",
"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 update && npm run clean:build && npm update --prefix ./tests/test && npm run clean:build:start --prefix ./tests/test",
"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": {
"@eslint/js": "^9.6.0",
"@types/eslint__js": "^8.42.3",
"@types/node": "^20.11.28",
"eslint": "^8.57.0",
"typescript-eslint": "^7.15.0",
"nodemon": "^2.0.22",
"typescript": "^5.1.6"
},
"keywords": [
"api",
"concurrency",
"ipc",
"marshal",
"multithreaded",
"multithreading",
"parallelism",
"rpc",
"scalable",
"thread",
"threads",
"web",
"worker"
]
}