-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
85 lines (85 loc) · 2.21 KB
/
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "@actcoding/supa-cli",
"description": "Advanced CLI tooling for Supabase.",
"version": "0.2.0",
"license": "MIT",
"type": "module",
"homepage": "https://actcoding.github.io/supa-cli/",
"repository": {
"type": "git",
"url": "git://github.com/actcoding/supa-cli.git"
},
"bugs": {
"url": "https://github.com/actcoding/supa-cli/issues"
},
"scripts": {
"build": "rm -rf dist && tsc -p tsconfig.build.json && tsc-alias -v -p tsconfig.build.json",
"gen:actions": "bun run scripts/gen-actions.ts",
"gen:supabase-api": " generate -i https://api.supabase.com/api/v1-json -o cli/generated/supabase-api -g typescript-fetch",
"docs:serve": "./.venv/bin/mkdocs serve",
"docs:build": "./.venv/bin/mkdocs build"
},
"exports": {
".": "./dist/public.js"
},
"files": [
"./dist/",
"config.schema.json"
],
"bin": {
"supa": "./dist/index.js"
},
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=14.8"
},
"devDependencies": {
"@actcoding/eslint-config": "^0.0.7",
"@types/bun": "^1.1.6",
"@types/ejs": "^3.1.5",
"@types/espree": "^10.1.0",
"@types/hast": "^3.0.4",
"@types/mjml": "^4.7.4",
"@types/node": "^20.0.0",
"@types/pg": "^8.11.6",
"@types/slug": "^5.0.8",
"acorn": "^8.12.1",
"comment-parser": "^1.4.1",
"dot-prop": "^9.0.0",
"ejs": "^3.1.10",
"eslint": "^9.8.0",
"espree": "^10.1.0",
"remark-parse": "^11.0.0",
"remark-stringify": "^11.0.0",
"slug": "^9.1.0",
"tsc-alias": "^1.8.10",
"typescript": "^5.5.4",
"unified": "^11.0.5"
},
"peerDependencies": {
"@supabase/supabase-js": "^2.40.0",
"supabase": "^1.180.0"
},
"dependencies": {
"@inquirer/confirm": "^3.1.20",
"@inquirer/input": "^2.2.7",
"@inquirer/password": "^2.1.20",
"@inquirer/select": "^2.4.7",
"commander": "^12.1.0",
"dayjs": "^1.11.12",
"dotenv": "^16.4.5",
"glob": "^11.0.0",
"hast-util-select": "^6.0.2",
"jose": "^5.6.3",
"mjml": "^4.15.3",
"node-pg-migrate": "^7.6.0",
"ora": "^8.0.1",
"pg": "^8.12.0",
"rehype": "^13.0.1",
"rehype-preset-minify": "^7.0.0",
"rehype-stringify": "^10.0.0",
"zod": "^3.23.8"
}
}