-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.08 KB
/
Copy pathpackage.json
File metadata and controls
48 lines (48 loc) · 1.08 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
{
"name": "@rbxts/replecs",
"version": "0.3.1",
"description": "Replication library for Jecs",
"main": "out/init.luau",
"types": "out/index.d.ts",
"exports": {
".": {
"types": "./out/index.d.ts",
"default": "./out/init.luau"
}
},
"directories": {
"doc": "docs",
"test": "tests"
},
"publishConfig": {
"access": "public"
},
"files": [
"out",
"!**/*.spec.lua",
"!**/*.spec.d.ts"
],
"scripts": {
"serve": "rojo sourcemap serve.project.json -o sourcemap.json --watch && rojo serve serve.project.json"
},
"repository": {
"type": "git",
"url": "https://github.com/PepeElToro41/replecs.git"
},
"author": "PepeElToro41",
"license": "MIT",
"bugs": {
"url": "https://github.com/PepeElToro41/replecs/issues"
},
"homepage": "https://github.com/PepeElToro41/replecs#readme",
"devDependencies": {
"@rbxts/compiler-types": "^2.3.0-types.1",
"@rbxts/types": "^1.0.768",
"roblox-ts": "3.0.0",
"typescript": "=5.5.3",
"prettier": "^3.2.5"
},
"peerDependencies": {
"@rbxts/jecs": "^0.10.0"
}
}