generated from NEARBuilders/project-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 949 Bytes
/
package.json
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
{
"name": "@curatedotfun/supabase",
"version": "0.0.5",
"description": "Supabase distributor plugin for curatedotfun",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"files": [
"dist"
],
"scripts": {
"build": "tsc -p tsconfig.build.json",
"fmt": "prettier --write '**/*.{js,jsx,ts,tsx,json}'",
"fmt:check": "prettier --check '**/*.{js,jsx,ts,tsx,json}'",
"test": "bun test",
"prepublishOnly": "bun run build"
},
"keywords": [
"curatedotfun",
"supabase",
"distributor",
"plugin"
],
"author": "",
"license": "MIT",
"devDependencies": {
"@playwright/test": "^1.46.1",
"@types/node": "^20.11.0",
"prettier": "^3.3.3",
"typescript": "^5.0.0",
"bun-types": "latest"
},
"dependencies": {
"@supabase/supabase-js": "^2.48.1"
},
"peerDependencies": {
"typescript": "^5.0.0"
},
"publishConfig": {
"access": "public"
}
}