package.json 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. {
  2. "name": "com.shotshock.twong",
  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.0.0",
  17. "cordova-ios": "^6.1.1",
  18. "cordova-plugin-customurlscheme": "^5.0.2",
  19. "cordova-plugin-device": "^2.0.3",
  20. "cordova-plugin-fullscreen": "^1.3.0",
  21. "cordova-plugin-jcore": "^1.3.3",
  22. "cordova-plugin-statusbar": "^2.4.3",
  23. "cordova-plugin-wechat": "git+https://github.com/xu-li/cordova-plugin-wechat.git#develop",
  24. "cordova-plugin-whitelist": "^1.3.4",
  25. "jpush-phonegap-plugin": "https://gitee.com/scnon/jpush-phonegap-plugin.git"
  26. },
  27. "cordova": {
  28. "plugins": {
  29. "cordova-plugin-whitelist": {},
  30. "jpush-phonegap-plugin": {
  31. "APP_KEY": "ab09fb9a832156e9c500ee68",
  32. "CHANNEL": "developer-default"
  33. },
  34. "cordova-plugin-wechat": {
  35. "WECHATAPPID": "wx1bb4342986c22b28",
  36. "UNIVERSALLINK": "https://www.shotshock.shop/ios/"
  37. },
  38. "cordova-plugin-customurlscheme": {
  39. "URL_SCHEME": "app",
  40. "ANDROID_SCHEME": "app",
  41. "ANDROID_HOST": "twong.com",
  42. "ANDROID_PATHPREFIX": "/open"
  43. },
  44. "cordova-plugin-fullscreen": {},
  45. "cordova-plugin-statusbar": {}
  46. },
  47. "platforms": [
  48. "android",
  49. "ios"
  50. ]
  51. },
  52. "dependencies": {}
  53. }