-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.07 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
{
"name": "@boengli/capacitor-fullscreen",
"version": "0.0.17",
"description": "Launches capacitor app in fullscreen (immersive) mode.",
"types": "dist/index.d.ts",
"main": "dist/index.js",
"files": [
"dist/",
"android/build.gradle",
"android/src/main/AndroidManifest.xml",
"android/src/main/java/com/boengli/plugins/fullscreen/Fullscreen.kt",
"README.md",
"package.json"
],
"author": "R. Lutz (https://github.com/boengli)",
"license": "MIT",
"devDependencies": {
"@capacitor/android": "^5.0.0 || ^6.0.0",
"@capacitor/core": "^5.0.0 || ^6.0.0",
"typescript": "^4.1.5"
},
"capacitor": {
"android": {
"src": "android"
}
},
"scripts": {
"build": "echo 'No TypeScript files to build'",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/boengli/capacitor-fullscreen.git"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
}
}