-
-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathpackage.json
More file actions
99 lines (99 loc) · 2.5 KB
/
package.json
File metadata and controls
99 lines (99 loc) · 2.5 KB
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "tgrid",
"version": "1.2.1",
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"exports": {
".": {
"types": "./lib/index.d.ts",
"require": "./lib/index.js",
"import": "./lib/index.mjs"
}
},
"description": "Grid Computing Framework for TypeScript",
"author": {
"name": "Jeongho Nam",
"email": "samchon.github@gmail.com",
"url": "https://github.com/samchon"
},
"scripts": {
"build": "npm run build:main && npm run build:test",
"build:main": "rimraf lib && tsc && rollup -c",
"build:test": "rimraf bin && tsc --project test/tsconfig.json",
"dev": "npm run build:test -- --watch",
"prepare": "ts-patch install",
"prettier": "prettier src --write && prettier test --write",
"test": "npm run test:node && npm run test:browser",
"test:browser": "node bin/test/browser",
"test:node": "node bin/test/node"
},
"dependencies": {
"@types/node": "^20.11.30",
"@types/websocket": "^1.0.10",
"@types/ws": "^7.4.7",
"import2": "^1.0.3",
"tstl": "3.0.0",
"ws": "^7.5.3"
},
"devDependencies": {
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^11.1.6",
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/browserify": "^12.0.40",
"@types/puppeteer": "^7.0.4",
"@typescript-eslint/eslint-plugin": "^5.33.0",
"@typescript-eslint/parser": "^5.33.0",
"browserify": "^17.0.0",
"eslint": "^8.57.0",
"local-web-server": "^2.6.0",
"mv": "^2.1.1",
"prettier": "^3.2.5",
"puppeteer": "^22.4.1",
"rimraf": "^5.0.5",
"rollup": "^4.13.1",
"source-map-support": "^0.5.21",
"ts-node": "^10.9.2",
"ts-patch": "^3.1.2",
"tslib": "^2.6.2",
"typescript": "5.4.5",
"typescript-transform-paths": "^3.4.7",
"whatwg-fetch": "^3.6.2"
},
"homepage": "https://tgrid.com",
"repository": {
"type": "git",
"url": "https://github.com/samchon/tgrid"
},
"bugs": {
"url": "https://github.com/samchon/tgrid/issues"
},
"license": "MIT",
"keywords": [
"TGrid",
"typescript grid computing framework",
"realtime network communication",
"RPC",
"RFC",
"ROC",
"OON",
"remote procedure call",
"remote function call",
"remote object call",
"object oriented network",
"WebSocket",
"Worker",
"SharedWorker",
"NestJS",
"nestia",
"tRPC",
"thread",
"process"
],
"files": [
"LICENSE",
"README.md",
"lib",
"src"
],
"packageManager": "pnpm@10.5.2"
}