-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.38 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.38 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
{
"name": "@rbxts/roblox-supabase",
"version": "1.0.0",
"description": "A type-safe PostgREST client for Supabase, designed for Roblox servers using roblox-ts",
"main": "out/init.lua",
"scripts": {
"lint": "eslint src",
"build": "rbxtsc",
"watch": "rbxtsc -w",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Waffle0823/Roblox-Supabase.git"
},
"keywords": [
"roblox",
"supabase",
"postgrest",
"typescript",
"client",
"roblox-ts",
"rbxts",
"type"
],
"author": "Waffle0823",
"license": "MIT",
"type": "commonjs",
"bugs": {
"url": "https://github.com/Waffle0823/Roblox-Supabase/issues"
},
"homepage": "https://github.com/Waffle0823/Roblox-Supabase#readme",
"types": "out/index.d.ts",
"files": [
"out",
"!**/*.tsbuildinfo"
],
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@rbxts/compiler-types": "^3.0.0-types.0",
"@rbxts/types": "^1.0.903",
"@typescript-eslint/eslint-plugin": "^8.53.1",
"@typescript-eslint/parser": "^8.53.1",
"eslint": "^8.57.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.5",
"eslint-plugin-roblox-ts": "^1.3.1",
"prettier": "^3.8.1",
"roblox-ts": "^3.0.0",
"typescript": "^5.9.3"
},
"dependencies": {
"@rbxts/services": "^1.6.0"
}
}