package.json 1.4 KB

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