forked from capacitor-community/apple-sign-in
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.27 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
{
"name": "@capacitor-community/apple-sign-in",
"version": "1.0.1",
"description": "Capacitor Sign in with Apple",
"main": "dist/esm/index.js",
"types": "dist/esm/index.d.ts",
"scripts": {
"build": "npm run clean && tsc",
"clean": "rm -rf ./dist",
"watch": "tsc --watch",
"prepublishOnly": "npm run build",
"npm-publish": "np"
},
"author": "Max Lynch <[email protected]>",
"license": "MIT",
"dependencies": {
"@capacitor/core": "^2.5.0"
},
"devDependencies": {
"typescript": "^3.2.4",
"@capacitor/ios": "^2.5.0",
"@capacitor/android": "^2.5.0",
"husky": "^4.2.5",
"np": "^6.2.3",
"prettier": "^2.0.5",
"prettier-plugin-java": "^0.8.0",
"pretty-quick": "^2.0.1"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"files": [
"dist/",
"ios/",
"android/",
"CapacitorCommunityAppleSignIn.podspec"
],
"keywords": [
"capacitor",
"plugin",
"native"
],
"capacitor": {
"ios": {
"src": "ios"
},
"android": {
"src": "android"
}
},
"repository": {
"type": "git",
"url": "https://github.com/capacitor-community/apple-sign-in"
},
"bugs": {
"url": "https://github.com/capacitor-community/apple-sign-in/issues"
}
}