-
-
Notifications
You must be signed in to change notification settings - Fork 111
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.59 KB
/
Copy pathpackage.json
File metadata and controls
66 lines (66 loc) · 1.59 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
{
"name": "@capawesome/capacitor-android-dark-mode-support",
"version": "8.0.1",
"description": "Capacitor plugin to support dark mode on Android.",
"files": [
"android/src/main/",
"android/build.gradle"
],
"author": "Robin Genz <mail@robingenz.dev>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/capawesome-team/capacitor-plugins.git"
},
"bugs": {
"url": "https://github.com/capawesome-team/capacitor-plugins/issues"
},
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/capawesome-team/"
},
{
"type": "opencollective",
"url": "https://opencollective.com/capawesome"
}
],
"homepage": "https://capawesome.io/docs/sdks/capacitor/android-dark-mode-support/",
"keywords": [
"capacitor",
"capacitor-plugin",
"plugin",
"native",
"android",
"dark mode",
"dark theme",
"night mode",
"prefers-color-scheme",
"color scheme",
"theming",
"webview dark mode"
],
"scripts": {
"verify": "npm run verify:android",
"verify:android": "cd android && ./gradlew clean build test && cd ..",
"lint": "npm run prettier -- --check",
"fmt": "npm run prettier -- --write",
"prettier": "prettier \"**/*.{css,html,ts,js,java}\""
},
"devDependencies": {
"@capacitor/android": "8.0.0",
"@capacitor/cli": "8.0.0",
"prettier-plugin-java": "2.6.7"
},
"peerDependencies": {
"@capacitor/core": ">=8.0.0"
},
"capacitor": {
"android": {
"src": "android"
}
},
"publishConfig": {
"access": "public"
}
}