-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
51 lines (51 loc) · 1.39 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
{
"name": "vue-supabase",
"version": "2.3.0",
"description": "A small wrapper for integrating supabase to Vuejs",
"keywords": [
"vue",
"custom",
"supabase",
"vue-supabase"
],
"author": "Supabase Community",
"license": "MIT",
"homepage": "https://github.com/supabase-community/vue-supabase#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/supabase-community/vue-supabase.git"
},
"bugs": {
"url": "https://github.com/supabase-community/vue-supabase/issues"
},
"engine": {
"node": ">= 1"
},
"scripts": {
"prepare": "npm run build",
"test": "echo 'no tests to run'",
"lint": "eslint . --ext .ts",
"build": "tsc -p config/tsconfig.cjs.json && tsc -p config/tsconfig.esm.json && tsc -p config/tsconfig.types.json"
},
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/types/index.d.ts",
"dependencies": {
"@supabase/supabase-js": "^1.35.2",
"@vue/composition-api": "^1.6.0",
"vue-demi": "^0.12.5"
},
"peerDependencies": {
"@vue/composition-api": "^1.0.4",
"vue": "^2.0.0 || >=3.0.0"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.21.0",
"@typescript-eslint/parser": "^5.21.0",
"eslint": "^8.14.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"prettier": "^2.6.2",
"typescript": "^4.6.4"
}
}