package.json 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. {
  2. "name": "@flowgram.ai/cli",
  3. "version": "0.1.8",
  4. "description": "A CLI tool to create demo projects or sync materials",
  5. "bin": {
  6. "flowgram-cli": "./bin/index.js"
  7. },
  8. "type": "module",
  9. "files": [
  10. "bin",
  11. "src",
  12. "dist"
  13. ],
  14. "scripts": {
  15. "build": "tsup src/index.ts --format esm,cjs --dts --out-dir dist",
  16. "watch": "tsup src/index.ts --format esm,cjs --out-dir dist --watch",
  17. "start": "node bin/index.js",
  18. "lint": "eslint ./src --cache",
  19. "lint:fix": "eslint ./src --fix"
  20. },
  21. "dependencies": {
  22. "fs-extra": "^9.1.0",
  23. "commander": "^11.0.0",
  24. "chalk": "^5.3.0",
  25. "tar": "7.4.3",
  26. "inquirer": "^12.9.4",
  27. "ignore": "~7.0.5"
  28. },
  29. "devDependencies": {
  30. "@flowgram.ai/eslint-config": "workspace:*",
  31. "@types/download": "8.0.5",
  32. "@types/fs-extra": "11.0.4",
  33. "@types/node": "^18",
  34. "@types/inquirer": "^9.0.9",
  35. "tsup": "^8.0.1",
  36. "eslint": "^8.54.0",
  37. "@typescript-eslint/parser": "^6.10.0",
  38. "typescript": "^5.8.3"
  39. },
  40. "publishConfig": {
  41. "access": "public",
  42. "registry": "https://registry.npmjs.org/"
  43. }
  44. }