package.json 1.1 KB

1234567891011121314151617181920212223242526272829303132333435
  1. {
  2. "name": "com.izouma.muye",
  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. "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-handheld": "file:../handheld",
  16. "cordova-plugin-multidex": "^0.1.4",
  17. "cordova-plugin-remote-injection": "^0.5.2",
  18. "cordova-plugin-whitelist": "^1.3.3",
  19. "cordova-plugin-wkwebview-engine": "^1.1.4",
  20. "cordova-plugin-x-toast": "^2.6.2"
  21. },
  22. "cordova": {
  23. "plugins": {
  24. "cordova-plugin-whitelist": {},
  25. "cordova-plugin-wkwebview-engine": {},
  26. "cordova-plugin-multidex": {},
  27. "cordova-plugin-remote-injection": {},
  28. "cordova-plugin-handheld": {},
  29. "cordova-plugin-x-toast": {}
  30. },
  31. "platforms": [
  32. "android"
  33. ]
  34. }
  35. }