forked from supabase/cli
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 698 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 698 Bytes
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
{
"name": "supabase",
"version": "0.0.0-automated",
"description": "Supabase CLI",
"repository": "supabase/cli",
"homepage": "https://supabase.com/docs/reference/cli",
"bugs": "https://github.com/supabase/cli/issues",
"license": "MIT",
"author": "Supabase",
"type": "module",
"files": [
"scripts"
],
"scripts": {
"postinstall": "node scripts/postinstall.js"
},
"bin": {
"supabase": "bin/supabase"
},
"dependencies": {
"bin-links": "^4.0.1",
"node-fetch": "^3.2.10",
"tar": "6.1.13"
},
"release": {
"branches": [
"main"
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/git"
]
}
}