forked from nuxt-modules/supabase
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·40 lines (40 loc) · 1.04 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
{
"name": "@nuxtjs/supabase",
"version": "0.1.23",
"description": "Supabase module for Nuxt",
"repository": "nuxt-community/supabase-module",
"license": "MIT",
"exports": {
".": {
"import": "./dist/module.mjs",
"require": "./dist/module.cjs"
}
},
"main": "./dist/module.cjs",
"types": "./dist/types.d.ts",
"files": [
"dist"
],
"scripts": {
"dev": "nuxi dev playground",
"dev:build": "nuxi build playground",
"dev:prepare": "nuxt-module-build --stub && nuxi prepare playground",
"build": "nuxt-module-build",
"prepack": "yarn build",
"lint": "eslint --ext .js,.ts,.vue .",
"release": "yarn lint && standard-version && git push --follow-tags"
},
"dependencies": {
"@nuxt/kit": "^3.0.0-rc.8",
"@supabase/supabase-js": "^1.35.6",
"defu": "^6.0.0",
"pathe": "^0.3.4"
},
"devDependencies": {
"@nuxt/module-builder": "^0.1.7",
"@nuxtjs/eslint-config-typescript": "^10.0.0",
"eslint": "^8.22.0",
"nuxt": "^3.0.0-rc.8",
"standard-version": "^9.5.0"
}
}