generated from Tesmi-Develop/template-ts-package
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.72 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.72 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
{
"name": "@rbxts/shared-components-flamework",
"version": "2.7.3",
"description": "This package will allow you to create shared components that will synchronize between server and client. This package is reflex-based, so it is important to know how to work with it to understand how this package works.",
"main": "out/init.lua",
"scripts": {
"build": "rbxtsc",
"watch": "rbxtsc -w",
"test:watch": "rbxtsc -w --type=game -p test -i test/include",
"serve": "rojo serve test/default.project.json",
"prepublishOnly": "npm run build"
},
"keywords": [
"flamework",
"shared",
"network",
"components"
],
"repository": "https://github.com/Tesmi-Develop/shared-component-flamework",
"author": "tesmi",
"license": "MIT",
"types": "out/index.d.ts",
"files": [
"out",
"!**/*.tsbuildinfo",
"!**/*.spec.lua",
"flamework.build"
],
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@rbxts/charm-sync": "^0.3.0",
"@rbxts/compiler-types": "^3.0.0-types.0",
"@rbxts/types": "^1.0.813",
"@typescript-eslint/eslint-plugin": "^6.19.0",
"@typescript-eslint/parser": "^6.19.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-roblox-ts": "^0.0.36",
"prettier": "^3.2.4",
"rbxts-transformer-flamework": "^1.1.0",
"roblox-ts": "^3.0.0",
"typescript": "^5.2.2"
},
"peerDependencies": {
"@rbxts/charm": ">=0.10.0",
"@rbxts/charm-sync": ">=0.3.0"
},
"dependencies": {
"@flamework/components": "^1.1.0",
"@flamework/core": "^1.1.0",
"@rbxts/beacon": "^2.1.1",
"@rbxts/remo": "^1.3.1",
"@rbxts/services": "^1.5.3",
"@rbxts/t": "^3.1.1"
}
}