package.json 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. {
  2. "bin": {
  3. "sequelize": "./bin/run.js"
  4. },
  5. "bugs": "https://github.com/sequelize/sequelize/issues",
  6. "dependencies": {
  7. "@inquirer/checkbox": "^4.2.0",
  8. "@inquirer/confirm": "^5.1.14",
  9. "@inquirer/input": "^4.2.1",
  10. "@inquirer/select": "^4.3.1",
  11. "@oclif/core": "^4.5.2",
  12. "@oclif/plugin-help": "^6.2.32",
  13. "@sequelize/utils": "workspace:*",
  14. "ansis": "^3.17.0",
  15. "cosmiconfig": "^9.0.0",
  16. "zod": "^4.0.10"
  17. },
  18. "description": "The Sequelize CLI\nDocumentation: https://sequelize.org/docs/v7/cli/",
  19. "devDependencies": {
  20. "@oclif/test": "4.1.13",
  21. "@types/chai": "4.3.20",
  22. "@types/mocha": "10.0.10",
  23. "chai": "4.5.0",
  24. "concurrently": "9.2.0",
  25. "mocha": "11.7.1",
  26. "oclif": "4.22.5",
  27. "rimraf": "5.0.10"
  28. },
  29. "engines": {
  30. "node": ">=18.20.8"
  31. },
  32. "exports": "./lib/index.js",
  33. "files": [
  34. "/bin",
  35. "/lib",
  36. "/static",
  37. "/oclif.manifest.json"
  38. ],
  39. "homepage": "https://sequelize.org/docs/v7/cli/",
  40. "keywords": [],
  41. "license": "MIT",
  42. "main": "lib/index.js",
  43. "name": "@sequelize/cli",
  44. "oclif": {
  45. "bin": "sequelize",
  46. "dirname": "sequelize",
  47. "commands": "./lib/commands",
  48. "plugins": [
  49. "@oclif/plugin-help"
  50. ],
  51. "topicSeparator": " ",
  52. "topics": {
  53. "migration": {
  54. "description": "Commands for managing database migrations"
  55. },
  56. "seed": {
  57. "description": "Commands for managing database seeding"
  58. }
  59. }
  60. },
  61. "repository": "https://github.com/sequelize/sequelize",
  62. "scripts": {
  63. "build": "rimraf lib && tsc --project tsconfig.build.json",
  64. "postpack": "rimraf oclif.manifest.json",
  65. "prepack": "yarn build && oclif manifest && oclif readme",
  66. "prepare": "yarn build",
  67. "test": "concurrently \"npm:test-*\"",
  68. "test-unit": "mocha ./**/*.test.ts",
  69. "test-typings": "tsc --noEmit",
  70. "test-exports": "../../dev/sync-exports.mjs ./src --check-outdated",
  71. "sync-exports": "../../dev/sync-exports.mjs ./src"
  72. },
  73. "type": "module",
  74. "types": "lib/index.d.ts",
  75. "version": "7.0.0-alpha.46",
  76. "publishConfig": {
  77. "access": "public"
  78. }
  79. }