package.json 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135
  1. {
  2. "name": "@joystream/cli",
  3. "description": "Command Line Interface for Joystream community and governance activities",
  4. "version": "0.5.0",
  5. "author": "Leszek Wiesner",
  6. "bin": {
  7. "joystream-cli": "./bin/run"
  8. },
  9. "bugs": "https://github.com/Joystream/joystream/issues",
  10. "dependencies": {
  11. "@apidevtools/json-schema-ref-parser": "^9.0.6",
  12. "@ffprobe-installer/ffprobe": "^1.1.0",
  13. "@joystream/types": "^0.16.1",
  14. "@oclif/command": "^1.5.19",
  15. "@oclif/config": "^1.14.0",
  16. "@oclif/plugin-autocomplete": "^0.2.0",
  17. "@oclif/plugin-help": "^2.2.3",
  18. "@oclif/plugin-not-found": "^1.2.4",
  19. "@oclif/plugin-warn-if-update-available": "^1.7.0",
  20. "@polkadot/api": "4.2.1",
  21. "cli-progress": "^3.9.0",
  22. "@types/cli-progress": "^3.9.1",
  23. "@types/fluent-ffmpeg": "^2.1.16",
  24. "@types/inquirer": "^6.5.0",
  25. "@types/proper-lockfile": "^4.1.1",
  26. "@types/slug": "^0.9.1",
  27. "ajv": "^6.11.0",
  28. "axios": "^0.21.1",
  29. "cli-ux": "^5.4.5",
  30. "fluent-ffmpeg": "^2.1.2",
  31. "inquirer": "^7.1.0",
  32. "inquirer-datepicker-prompt": "^0.4.2",
  33. "ipfs-http-client": "^47.0.1",
  34. "ipfs-only-hash": "^1.0.2",
  35. "it-all": "^1.0.4",
  36. "it-drain": "^1.0.3",
  37. "it-first": "^1.0.4",
  38. "it-last": "^1.0.4",
  39. "it-to-buffer": "^1.0.4",
  40. "moment": "^2.24.0",
  41. "proper-lockfile": "^4.1.1",
  42. "slug": "^2.1.1",
  43. "tslib": "^1.11.1",
  44. "mime-types": "^2.1.30",
  45. "@types/mime-types": "^2.1.0"
  46. },
  47. "devDependencies": {
  48. "@oclif/dev-cli": "^1.22.2",
  49. "@oclif/test": "^1.2.5",
  50. "@polkadot/ts": "^0.3.62",
  51. "@types/chai": "^4.2.11",
  52. "@types/mocha": "^5.2.7",
  53. "@types/node": "^10.17.18",
  54. "chai": "^4.2.0",
  55. "eslint": "^7.6.0",
  56. "eslint-config-oclif": "^3.1.0",
  57. "eslint-config-oclif-typescript": "^0.1.0",
  58. "globby": "^10.0.2",
  59. "json-schema-to-typescript": "^9.1.1",
  60. "mocha": "^5.2.0",
  61. "nyc": "^14.1.1",
  62. "ts-node": "^8.8.2",
  63. "typescript": "^3.8.3"
  64. },
  65. "engines": {
  66. "node": ">=12.18.0",
  67. "yarn": "^1.22.0"
  68. },
  69. "publishConfig": {
  70. "access": "public",
  71. "registry": "https://registry.npmjs.org"
  72. },
  73. "files": [
  74. "/bin",
  75. "/lib",
  76. "/npm-shrinkwrap.json",
  77. "/oclif.manifest.json"
  78. ],
  79. "homepage": "https://github.com/Joystream/joystream/blob/master/cli",
  80. "keywords": [
  81. "oclif"
  82. ],
  83. "license": "GPL-3.0-only",
  84. "main": "lib/index.js",
  85. "oclif": {
  86. "repositoryPrefix": "<%- repo %>/blob/master/cli/<%- commandPath %>",
  87. "commands": "./lib/commands",
  88. "bin": "joystream-cli",
  89. "plugins": [
  90. "@oclif/plugin-help",
  91. "@oclif/plugin-autocomplete",
  92. "@oclif/plugin-not-found",
  93. "@oclif/plugin-warn-if-update-available"
  94. ],
  95. "topics": {
  96. "council": {
  97. "description": "Council-related information and activities like voting, becoming part of the council etc."
  98. },
  99. "account": {
  100. "description": "Accounts management - create, import or switch currently used account"
  101. },
  102. "api": {
  103. "description": "Inspect the substrate node api, perform lower-level api calls or change the current api provider uri"
  104. },
  105. "working-groups": {
  106. "description": "Working group lead and worker actions"
  107. },
  108. "content": {
  109. "description": "Interactions with content directory module - managing vidoes, channels, assets, categories and curator groups"
  110. }
  111. }
  112. },
  113. "repository": {
  114. "type": "git",
  115. "url": "https://github.com/Joystream/joystream",
  116. "directory": "cli"
  117. },
  118. "scripts": {
  119. "postpack": "rm -f oclif.manifest.json",
  120. "posttest": "yarn lint",
  121. "prepack": "rm -rf lib && tsc -b && oclif-dev manifest && oclif-dev readme",
  122. "test": "nyc --extension .ts mocha --forbid-only \"test/**/*.test.ts\"",
  123. "build": "tsc --build tsconfig.json",
  124. "version": "oclif-dev readme && git add README.md",
  125. "lint": "eslint ./src --ext .ts",
  126. "checks": "tsc --noEmit --pretty && prettier ./ --check && yarn lint",
  127. "format": "prettier ./ --write",
  128. "generate:schema-typings": "rm -rf ./src/json-schemas/typings && json2ts -i ./src/json-schemas/ -o ./src/json-schemas/typings/"
  129. },
  130. "types": "lib/index.d.ts",
  131. "volta": {
  132. "node": "12.18.2",
  133. "yarn": "1.22.4"
  134. }
  135. }