package.json 922 B

12345678910111213141516171819202122232425262728293031323334
  1. {
  2. "name": "io.cordova.hellocordova",
  3. "displayName": "HelloCordova",
  4. "version": "1.0.0",
  5. "description": "A sample Apache Cordova application that responds to the deviceready event.",
  6. "main": "index.js",
  7. "scripts": {
  8. "test": "echo \"Error: no test specified\" && exit 1"
  9. },
  10. "keywords": [
  11. "ecosystem:cordova"
  12. ],
  13. "author": "Apache Cordova Team",
  14. "license": "Apache-2.0",
  15. "devDependencies": {
  16. "cordova-android": "^9.1.0",
  17. "cordova-plugin-file": "^6.0.2",
  18. "cordova-plugin-media-capture": "^3.0.3",
  19. "cordova-plugin-splashscreen": "^6.0.1",
  20. "cordova-plugin-webview-x5": "^0.3.2-alpha.1",
  21. "cordova-plugin-whitelist": "^1.3.5"
  22. },
  23. "cordova": {
  24. "plugins": {
  25. "cordova-plugin-whitelist": {},
  26. "cordova-plugin-webview-x5": {},
  27. "cordova-plugin-media-capture": {},
  28. "cordova-plugin-splashscreen": {}
  29. },
  30. "platforms": [
  31. "android"
  32. ]
  33. }
  34. }