-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.08 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 2.08 KB
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
{
"name": "@mxwmnn/capacitor-android-webauthn",
"version": "8.0.1-dev.0",
"type": "module",
"description": "WebAuthn and passkey support for Capacitor Android WebViews using Credential Manager",
"main": "dist/plugin.cjs.js",
"module": "dist/esm/index.js",
"types": "dist/esm/index.d.ts",
"unpkg": "dist/plugin.js",
"files": [
"android/",
"dist/",
"src/"
],
"author": "mxwmnn",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/mxwmnn/capacitor-android-webauthn.git"
},
"bugs": {
"url": "https://github.com/mxwmnn/capacitor-android-webauthn/issues"
},
"homepage": "https://github.com/mxwmnn/capacitor-android-webauthn#readme",
"keywords": [
"capacitor",
"plugin",
"native",
"android",
"webauthn",
"passkey",
"passkeys",
"credential-manager",
"webview",
"fido2"
],
"scripts": {
"verify": "bun run verify:android",
"verify:android": "cd android && ./gradlew clean build test && cd ..",
"lint": "bun run eslint",
"eslint": "eslint . --ext ts",
"prettier": "prettier \"**/*.{css,html,ts,js,java}\"",
"build": "bun run clean && bun run docgen && tsc && rollup -c rollup.config.js",
"clean": "rimraf ./dist",
"watch": "tsc --watch",
"prepublishOnly": "bun run build",
"docgen": "docgen --api CredentialManagerPlugin --output-readme README.md --output-json dist/docs.json",
"release:dev": "npm version prerelease --preid=dev",
"release:patch": "npm version patch",
"release:minor": "npm version minor",
"release:major": "npm version major",
"release:push": "git push origin main --follow-tags"
},
"devDependencies": {
"@capacitor/android": "^8.0.0",
"@capacitor/core": "^8.0.0",
"@capacitor/docgen": "^0.2.2",
"prettier": "^3.0.0",
"rimraf": "^5.0.0",
"rollup": "^4.0.0",
"typescript": "^5.0.0"
},
"peerDependencies": {
"@capacitor/core": "^8.0.0"
},
"capacitor": {
"android": {
"src": "android"
}
},
"publishConfig": {
"access": "public"
},
"packageManager": "bun@1.3.9"
}