-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.14 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.14 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
{
"name": "@rbxts/serio",
"version": "1.2.6",
"author": "runicly",
"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": "npm run build -- -p tests && rojo build tests -o tests/test-environment.rbxl && lune run tests tests/test-environment.rbxl",
"coverage": "nyc report && lune run fix-lcov-paths"
},
"keywords": [
"roblox",
"serde",
"binary",
"serialization",
"serializer"
],
"repository": {
"type": "git",
"url": "git+https://github.com/R-unic/serio.git"
},
"license": "ISC",
"description": "Roblox buffer serialization library",
"types": "out/index.d.ts",
"files": [
"out",
"!**/*.tsbuildinfo"
],
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@flamework/core": "^1.3.2",
"@rbxts/compiler-types": "^3.0.0-types.0",
"@rbxts/types": "^1.0.856",
"nyc": "^17.1.0",
"rbxts-transformer-flamework": "^1.3.2",
"roblox-ts": "^3.0.0",
"typescript": "^5.5.3"
}
}