-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
88 lines (88 loc) · 2.28 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
86
87
88
{
"name": "vue3-google-signin",
"type": "module",
"version": "2.0.0",
"description": "Google Sign-in for Vue3 with Google Identity Service",
"license": "MIT",
"author": {
"name": "Kasun Vithanage",
"email": "[email protected]",
"url": "https://kasvith.me"
},
"homepage": "https://vue3-google-signin.wavezync.com",
"scripts": {
"dev": "vite",
"build": "vue-tsc --noEmit && vite build",
"preview": "vite preview --port 5050",
"typecheck": "vue-tsc --noEmit",
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts",
"lint:fix": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix",
"docs:dev": "vitepress dev docs --port 3001",
"docs:build": "vitepress build docs",
"docs:serve": "vitepress serve docs"
},
"main": "./dist/index.umd.js",
"module": "./dist/index.es.js",
"exports": {
".": {
"import": "./dist/index.es.js",
"require": "./dist/index.umd.js",
"types": "./dist/plugin.d.ts"
}
},
"types": "./dist/plugin.d.ts",
"files": [
"dist"
],
"peerDependencies": {
"vue": "^3"
},
"keywords": [
"vue3 google signin",
"vue3 google oauth2",
"vue3 google oauth",
"vue3 google auth",
"vue3",
"google-signin",
"google-login",
"composables",
"vue3-google-login",
"vue3-google-signin",
"vue3-google-oauth2",
"vue3-google-oauth",
"vue3-google-auth",
"vue3-auth",
"google signin",
"google login",
"oauth2",
"gsi",
"vue3 google identity services",
"vue3 google identity service",
"vue3 google identity"
],
"repository": {
"type": "git",
"url": "https://github.com/wavezync/vue3-google-signin"
},
"devDependencies": {
"@rushstack/eslint-patch": "^1.7.2",
"@types/node": "^20.11.25",
"@vitejs/plugin-vue": "^5.0.4",
"@vue/eslint-config-prettier": "^9.0.0",
"@vue/eslint-config-typescript": "^13.0.0",
"@vue/tsconfig": "^0.5.1",
"eslint": "^8.57.0",
"eslint-plugin-vue": "^9.22.0",
"prettier": "^3.2.5",
"rollup-plugin-typescript2": "^0.36.0",
"sass": "^1.71.1",
"typescript": "^5.4.2",
"vite": "^5.1.5",
"vitepress": "^1.0.0-rc.45",
"vue": "^3.4.21",
"vue-tsc": "^2.0.6"
},
"dependencies": {
"vite-plugin-dts": "^3.7.3"
}
}