-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
59 lines (59 loc) · 1.46 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
{
"name": "nuxt-supabase",
"version": "2.3.1",
"description": "A supa simple Nuxt Module for Supabase",
"keywords": [
"vue",
"nuxt",
"supabase"
],
"homepage": "https://github.com/scottrobertson/nuxt-supabase#readme",
"bugs": {
"url": "https://github.com/scottrobertson/nuxt-supabase/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/scottrobertson/nuxt-supabase.git"
},
"license": "MIT",
"author": "Scott Robertson",
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"require": "./dist/index.cjs",
"default": "./dist/index.mjs"
},
"./composables": {
"require": "./dist/composables.cjs",
"default": "./dist/composables.mjs"
},
"./templates/*": "./dist/templates/*",
"./package.json": "./package.json"
},
"files": [
"dist"
],
"scripts": {
"build": "unbuild",
"prepack": "npm run build"
},
"dependencies": {
"@nuxt/kit": "npm:@nuxt/kit-edge@latest",
"@vue/composition-api": "^1.0.4",
"express": "^4.17.1",
"vue-supabase": "^2.2.4"
},
"devDependencies": {
"@types/express": "^4.17.13",
"@typescript-eslint/eslint-plugin": "^5.7.0",
"@typescript-eslint/parser": "^5.7.0",
"eslint": "^8.1.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"prettier": "^2.4.1",
"typescript": "^4.5.4",
"unbuild": "^0.6.7"
}
}