Many-in-one AI client.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

74 lines
1.8 KiB

  1. {
  2. "name": "@modal-sh/mio-ai",
  3. "version": "0.0.0",
  4. "files": [
  5. "dist",
  6. "src"
  7. ],
  8. "engines": {
  9. "node": ">=12"
  10. },
  11. "license": "MIT",
  12. "keywords": [
  13. "pridepack"
  14. ],
  15. "devDependencies": {
  16. "@dqbd/tiktoken": "^1.0.6",
  17. "@types/node": "^18.14.1",
  18. "dotenv": "^16.0.3",
  19. "eslint": "^8.35.0",
  20. "eslint-config-lxsmnsyc": "^0.5.0",
  21. "pridepack": "2.4.4",
  22. "tslib": "^2.5.0",
  23. "typescript": "^4.9.5",
  24. "vitest": "^0.28.1"
  25. },
  26. "scripts": {
  27. "prepublishOnly": "pridepack clean && pridepack build",
  28. "build": "pridepack build",
  29. "type-check": "pridepack check",
  30. "lint": "pridepack lint",
  31. "clean": "pridepack clean",
  32. "watch": "pridepack watch",
  33. "start": "pridepack start",
  34. "dev": "pridepack dev",
  35. "test": "vitest"
  36. },
  37. "private": false,
  38. "description": "Many-in-one AI client.",
  39. "repository": {
  40. "url": "https://code.modal.sh/modal-soft/mio-ai",
  41. "type": "git"
  42. },
  43. "homepage": "https://code.modal.sh/modal-soft/mio-ai",
  44. "bugs": {
  45. "url": "https://code.modal.sh/modal-soft/mio-ai/issues"
  46. },
  47. "author": "TheoryOfNekomata <allan.crisostomo@outlook.com>",
  48. "publishConfig": {
  49. "access": "public"
  50. },
  51. "dependencies": {
  52. "@dqbd/tiktoken": "^1.0.6",
  53. "fetch-ponyfill": "^7.1.0",
  54. "handlebars": "^4.7.7"
  55. },
  56. "types": "./dist/types/index.d.ts",
  57. "main": "./dist/cjs/production/index.js",
  58. "module": "./dist/esm/production/index.js",
  59. "exports": {
  60. ".": {
  61. "development": {
  62. "require": "./dist/cjs/development/index.js",
  63. "import": "./dist/esm/development/index.js"
  64. },
  65. "require": "./dist/cjs/production/index.js",
  66. "import": "./dist/esm/production/index.js",
  67. "types": "./dist/types/index.d.ts"
  68. }
  69. },
  70. "typesVersions": {
  71. "*": {}
  72. }
  73. }