-
Notifications
You must be signed in to change notification settings - Fork 209
/
package.json
45 lines (45 loc) · 915 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
43
44
45
{
"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",
"engines": {
"npm": ">=8"
},
"files": [
"scripts"
],
"scripts": {
"postinstall": "node scripts/postinstall.js"
},
"bin": {
"supabase": "bin/supabase"
},
"dependencies": {
"bin-links": "^5.0.0",
"https-proxy-agent": "^7.0.2",
"node-fetch": "^3.3.2",
"tar": "7.4.3"
},
"release": {
"branches": [
{
"name": "+([0-9])?(.{+([0-9]),x}).x",
"channel": "hotfix"
},
{
"name": "develop",
"channel": "beta"
}
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/git"
]
}
}