package.json 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113
  1. {
  2. "name": "@joystream/cli",
  3. "description": "Command Line Interface for Joystream community and governance activities",
  4. "version": "0.2.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. "@joystream/types": "^0.14.0",
  13. "@oclif/command": "^1.5.19",
  14. "@oclif/config": "^1.14.0",
  15. "@oclif/plugin-autocomplete": "^0.2.0",
  16. "@oclif/plugin-help": "^2.2.3",
  17. "@oclif/plugin-not-found": "^1.2.4",
  18. "@oclif/plugin-warn-if-update-available": "^1.7.0",
  19. "@polkadot/api": "1.26.1",
  20. "@types/inquirer": "^6.5.0",
  21. "@types/proper-lockfile": "^4.1.1",
  22. "@types/slug": "^0.9.1",
  23. "ajv": "^6.11.0",
  24. "cli-ux": "^5.4.5",
  25. "inquirer": "^7.1.0",
  26. "moment": "^2.24.0",
  27. "proper-lockfile": "^4.1.1",
  28. "slug": "^2.1.1",
  29. "tslib": "^1.11.1"
  30. },
  31. "devDependencies": {
  32. "@oclif/dev-cli": "^1.22.2",
  33. "@oclif/test": "^1.2.5",
  34. "@polkadot/ts": "^0.1.56",
  35. "@types/chai": "^4.2.11",
  36. "@types/mocha": "^5.2.7",
  37. "@types/node": "^10.17.18",
  38. "chai": "^4.2.0",
  39. "eslint": "^7.6.0",
  40. "eslint-config-oclif": "^3.1.0",
  41. "eslint-config-oclif-typescript": "^0.1.0",
  42. "globby": "^10.0.2",
  43. "mocha": "^5.2.0",
  44. "nyc": "^14.1.1",
  45. "ts-node": "^8.8.2",
  46. "typescript": "^3.8.3"
  47. },
  48. "engines": {
  49. "node": ">=12.18.0",
  50. "yarn": "^1.22.0"
  51. },
  52. "publishConfig": {
  53. "access": "public",
  54. "registry": "https://registry.npmjs.org"
  55. },
  56. "files": [
  57. "/bin",
  58. "/lib",
  59. "/npm-shrinkwrap.json",
  60. "/oclif.manifest.json"
  61. ],
  62. "homepage": "https://github.com/Joystream/joystream/blob/master/cli",
  63. "keywords": [
  64. "oclif"
  65. ],
  66. "license": "GPL-3.0-only",
  67. "main": "lib/index.js",
  68. "oclif": {
  69. "repositoryPrefix": "<%- repo %>/blob/master/cli/<%- commandPath %>",
  70. "commands": "./lib/commands",
  71. "bin": "joystream-cli",
  72. "plugins": [
  73. "@oclif/plugin-help",
  74. "@oclif/plugin-autocomplete",
  75. "@oclif/plugin-not-found",
  76. "@oclif/plugin-warn-if-update-available"
  77. ],
  78. "topics": {
  79. "council": {
  80. "description": "Council-related information and activities like voting, becoming part of the council etc."
  81. },
  82. "account": {
  83. "description": "Accounts management - create, import or switch currently used account"
  84. },
  85. "api": {
  86. "description": "Inspect the substrate node api, perform lower-level api calls or change the current api provider uri"
  87. },
  88. "working-groups": {
  89. "description": "Working group lead and worker actions"
  90. },
  91. "content-directory": {
  92. "description": "Interactions with content directory module - managing classes, schemas, entities and permissions"
  93. }
  94. }
  95. },
  96. "repository": {
  97. "type": "git",
  98. "url": "https://github.com/Joystream/joystream",
  99. "directory": "cli"
  100. },
  101. "scripts": {
  102. "postpack": "rm -f oclif.manifest.json",
  103. "posttest": "yarn lint",
  104. "prepack": "rm -rf lib && tsc -b && oclif-dev manifest && oclif-dev readme",
  105. "test": "nyc --extension .ts mocha --forbid-only \"test/**/*.test.ts\"",
  106. "build": "tsc --build tsconfig.json",
  107. "version": "oclif-dev readme && git add README.md",
  108. "lint": "eslint ./ --quiet --ext .ts",
  109. "checks": "yarn lint && tsc --noEmit --pretty && prettier ./ --check",
  110. "format": "prettier ./ --write"
  111. },
  112. "types": "lib/index.d.ts"
  113. }