package.json 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. {
  2. "name": "@capacitor/cli",
  3. "version": "6.1.0",
  4. "description": "Capacitor: Cross-platform apps with JavaScript and the web",
  5. "homepage": "https://capacitorjs.com",
  6. "author": "Ionic Team <hi@ionic.io> (https://ionic.io)",
  7. "license": "MIT",
  8. "repository": {
  9. "type": "git",
  10. "url": "https://github.com/ionic-team/capacitor.git"
  11. },
  12. "bugs": {
  13. "url": "https://github.com/ionic-team/capacitor/issues"
  14. },
  15. "files": [
  16. "assets/",
  17. "bin/",
  18. "dist/**/*.js",
  19. "dist/declarations.d.ts"
  20. ],
  21. "keywords": [
  22. "ionic",
  23. "ionic framework",
  24. "capacitor",
  25. "universal app",
  26. "progressive web apps",
  27. "cross platform"
  28. ],
  29. "engines": {
  30. "node": ">=18.0.0"
  31. },
  32. "main": "dist/index.js",
  33. "types": "dist/declarations.d.ts",
  34. "bin": {
  35. "capacitor": "./bin/capacitor",
  36. "cap": "./bin/capacitor"
  37. },
  38. "scripts": {
  39. "build": "npm run clean && npm run assets && tsc",
  40. "clean": "rimraf ./dist",
  41. "assets": "node ../scripts/pack-cli-assets.mjs",
  42. "prepublishOnly": "npm run build",
  43. "test": "jest -i",
  44. "watch": "npm run assets && tsc -w"
  45. },
  46. "dependencies": {
  47. "@ionic/cli-framework-output": "^2.2.5",
  48. "@ionic/utils-fs": "^3.1.6",
  49. "@ionic/utils-process": "^2.1.11",
  50. "@ionic/utils-subprocess": "2.1.11",
  51. "@ionic/utils-terminal": "^2.3.3",
  52. "commander": "^9.3.0",
  53. "debug": "^4.3.4",
  54. "env-paths": "^2.2.0",
  55. "kleur": "^4.1.4",
  56. "native-run": "^2.0.0",
  57. "open": "^8.4.0",
  58. "plist": "^3.0.5",
  59. "prompts": "^2.4.2",
  60. "rimraf": "^4.4.1",
  61. "semver": "^7.3.7",
  62. "tar": "^6.1.11",
  63. "tslib": "^2.4.0",
  64. "xml2js": "^0.5.0"
  65. },
  66. "devDependencies": {
  67. "@types/debug": "^4.1.7",
  68. "@types/jest": "^29.5.0",
  69. "@types/plist": "^3.0.2",
  70. "@types/prompts": "^2.0.14",
  71. "@types/semver": "^7.3.10",
  72. "@types/tar": "^6.1.1",
  73. "@types/tmp": "^0.2.3",
  74. "@types/xml2js": "0.4.5",
  75. "jest": "^29.5.0",
  76. "jest-environment-jsdom": "^29.5.0",
  77. "jest-jasmine2": "^29.5.0",
  78. "tmp": "^0.2.1",
  79. "ts-jest": "^29.0.5",
  80. "typescript": "~5.0.2"
  81. },
  82. "jest": {
  83. "preset": "ts-jest",
  84. "testRunner": "jest-jasmine2"
  85. },
  86. "publishConfig": {
  87. "access": "public"
  88. },
  89. "__npminstall_done": true,
  90. "_from": "@capacitor/cli@6.1.0",
  91. "_resolved": "https://registry.npmmirror.com/@capacitor/cli/-/cli-6.1.0.tgz"
  92. }