package.json 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. {
  2. "name": "embedchain",
  3. "version": "0.0.8",
  4. "description": "embedchain is a framework to easily create LLM powered bots over any dataset",
  5. "main": "dist/index.js",
  6. "types": "types/index.d.ts",
  7. "files": [
  8. "dist",
  9. "types"
  10. ],
  11. "scripts": {
  12. "build": "tsc -p tsconfig.build.json --listFiles",
  13. "prepare": "husky install",
  14. "test": "jest",
  15. "check-types": "tsc --noEmit --pretty"
  16. },
  17. "author": "Taranjeet Singh",
  18. "license": "Apache-2.0",
  19. "dependencies": {
  20. "axios": "^1.4.0",
  21. "chromadb": "^1.5.6",
  22. "jsdom": "^22.1.0",
  23. "langchain": "^0.0.136",
  24. "openai": "^4.3.1",
  25. "pdfjs-dist": "^3.8.162",
  26. "uuid": "^9.0.0"
  27. },
  28. "devDependencies": {
  29. "@commitlint/cli": "^17.1.2",
  30. "@commitlint/config-conventional": "^17.1.0",
  31. "@commitlint/cz-commitlint": "^17.1.2",
  32. "@types/jest": "^29.5.1",
  33. "@types/jsdom": "^21.1.1",
  34. "@typescript-eslint/eslint-plugin": "^5.41.0",
  35. "@typescript-eslint/parser": "^5.41.0",
  36. "eslint": "^8.34.0",
  37. "eslint-config-airbnb-base": "^15.0.0",
  38. "eslint-config-airbnb-typescript": "^17.0.0",
  39. "eslint-config-prettier": "^8.5.0",
  40. "eslint-plugin-import": "^2.27.5",
  41. "eslint-plugin-prettier": "^4.2.1",
  42. "eslint-plugin-simple-import-sort": "^8.0.0",
  43. "eslint-plugin-testing-library": "^5.9.1",
  44. "eslint-plugin-unused-imports": "^2.0.0",
  45. "husky": "^8.0.1",
  46. "jest": "^29.5.0",
  47. "lint-staged": "^13.0.3",
  48. "prettier": "^2.7.1",
  49. "ts-jest": "^29.1.0",
  50. "ts-loader": "^9.4.2",
  51. "typescript": "^5.2.2"
  52. }
  53. }