forked from capacitor-community/generic-oauth2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.81 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
{
"name": "@byteowls/capacitor-oauth2",
"version": "4.0.0",
"description": "Capacitor OAuth 2 client plugin",
"author": "Michael Oberwasserlechner",
"homepage": "https://github.com/moberwasserlechner/capacitor-oauth2",
"license": "MIT",
"main": "dist/esm/index.js",
"module": "dist/esm/index.js",
"types": "dist/esm/index.d.ts",
"scripts": {
"build": "npm run clean && tsc",
"clean": "rm -rf ./dist",
"watch": "tsc --watch",
"test": "jest",
"removePacked": "rm -f capacitor-oauth2-*.tgz",
"publishLocally": "npm run removePacked && npm run build && npm pack",
"prepublishOnly": "npm run build"
},
"files": [
"android/src/main/",
"android/build.gradle",
"dist/",
"ios/ByteowlsCapacitorOauth2/Source",
"ByteowlsCapacitorOauth2.podspec"
],
"keywords": [
"capacitor",
"capacitor-plugin",
"oauth2",
"oauth2-client",
"social-login"
],
"capacitor": {
"ios": {
"src": "ios"
},
"android": {
"src": "android"
}
},
"repository": {
"type": "git",
"url": "https://github.com/moberwasserlechner/capacitor-oauth2"
},
"bugs": {
"url": "https://github.com/moberwasserlechner/capacitor-oauth2/issues"
},
"publishConfig": {
"access": "public"
},
"peerDependencies": {
"@capacitor/core": ">=4"
},
"dependencies": {},
"devDependencies": {
"@capacitor/android": "4.2.0",
"@capacitor/core": "4.2.0",
"@capacitor/ios": "4.2.0",
"@types/jest": "29.0.3",
"jest": "29.0.3",
"ts-jest": "29.0.1",
"eslint": "8.23.1",
"rimraf": "3.0.2",
"typescript": "4.3.5"
}
}