package.json 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. {
  2. "name": "com.izouma.pumpapp",
  3. "displayName": "pumpApp",
  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. "author": "Apache Cordova Team",
  11. "license": "Apache-2.0",
  12. "dependencies": {
  13. "cordova-android": "^6.3.0",
  14. "cordova-plugin-camera": "^4.0.3",
  15. "cordova-plugin-crosswalk-webview": "git+https://github.com/x1ongzhu/cordova-plugin-crosswalk-webview.git",
  16. "cordova-plugin-device": "^2.0.2",
  17. "cordova-plugin-inappbrowser": "^3.0.0",
  18. "cordova-plugin-remote-injection": "^0.5.2",
  19. "cordova-plugin-whitelist": "^1.3.3",
  20. "cordova-plugin-wkwebview-engine": "^1.1.4",
  21. "cordova-plugin-x-toast": "^2.6.2"
  22. },
  23. "cordova": {
  24. "plugins": {
  25. "cordova-plugin-whitelist": {},
  26. "cordova-plugin-inappbrowser": {},
  27. "cordova-plugin-camera": {},
  28. "cordova-plugin-device": {},
  29. "cordova-plugin-x-toast": {},
  30. "cordova-plugin-wkwebview-engine": {},
  31. "cordova-plugin-remote-injection": {},
  32. "cordova-plugin-crosswalk-webview": {
  33. "XWALK_VERSION": "23+",
  34. "XWALK_LITEVERSION": "xwalk_core_library_canary:17+",
  35. "XWALK_COMMANDLINE": "--disable-pull-to-refresh-effect",
  36. "XWALK_MODE": "embedded",
  37. "XWALK_MULTIPLEAPK": "true"
  38. }
  39. },
  40. "platforms": [
  41. "android"
  42. ]
  43. }
  44. }