-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.42 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.42 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
{
"name": "@rbxts/tether",
"version": "1.4.17",
"main": "out/init.luau",
"scripts": {
"setup-rokit": "rokit trust lune-org/lune && rokit trust rojo-rbx/rojo && rokit install",
"build": "npm run setup-rokit && rbxtsc ",
"prepublishOnly": "npm test && rbxtsc",
"test": "rbxtsc && npm run build -- -p tests && rojo build tests -o tests/test-environment.rbxl && lune run tests tests/test-environment.rbxl"
},
"keywords": [
"roblox",
"tether",
"networking",
"message",
"serialization",
"middleware"
],
"repository": {
"url": "git+https://github.com/R-unic/tether.git"
},
"author": "runicly",
"license": "ISC",
"description": "A message-based networking solution for Roblox with automatic binary serialization and type validation",
"types": "out/index.d.ts",
"files": [
"out",
"!**/*.tsbuildinfo"
],
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@rbxts/compiler-types": "^3.0.0-types.0",
"@rbxts/types": "^1.0.909",
"rbxts-transformer-flamework": "^1.3.2",
"roblox-ts": "^3.0.0",
"ts-toolbelt": "^9.6.0",
"typescript": "=5.5.3"
},
"dependencies": {
"@flamework/core": "^1.3.2",
"@rbxts/destroyable": "^1.0.9",
"@rbxts/flamework-meta-utils": "^1.0.7",
"@rbxts/object-utils": "^1.0.4",
"@rbxts/repr": "^1.0.3",
"@rbxts/serio": "^1.2.5",
"@rbxts/services": "^1.6.0",
"@rbxts/trash": "^1.0.8"
}
}