Skip to content
Snippets Groups Projects
package.json 1.66 KiB
Newer Older
  • Learn to ignore specific revisions
  • {
      "name": "@llamaindex/cloud",
    
      "version": "3.0.8",
    
      "type": "module",
      "license": "MIT",
      "scripts": {
    
        "generate": "./node_modules/.bin/openapi-ts",
    
        "build": "pnpm run generate && bunchee",
        "dev": "bunchee --watch"
    
      },
      "files": [
        "openapi.json",
    
      ],
      "exports": {
        "./openapi.json": "./openapi.json",
        "./api": {
          "require": {
    
            "types": "./api/dist/index.d.cts",
            "default": "./api/dist/index.cjs"
    
            "types": "./api/dist/index.d.ts",
            "default": "./api/dist/index.js"
    
          "default": "./api/dist/index.js"
    
        },
        "./reader": {
          "require": {
    
            "types": "./reader/dist/index.d.cts",
            "default": "./reader/dist/index.cjs"
    
          },
          "import": {
    
            "types": "./reader/dist/index.d.ts",
            "default": "./reader/dist/index.js"
    
          "default": "./reader/dist/index.js"
    
        },
        ".": {
          "require": {
            "types": "./reader/dist/index.d.cts",
            "default": "./reader/dist/index.cjs"
          },
          "import": {
            "types": "./reader/dist/index.d.ts",
            "default": "./reader/dist/index.js"
          },
    
          "default": "./reader/dist/index.js"
    
        }
      },
      "repository": {
        "type": "git",
    
        "url": "git+https://github.com/run-llama/LlamaIndexTS.git",
    
        "directory": "packages/cloud"
      },
      "devDependencies": {
    
    Alex Yang's avatar
    Alex Yang committed
        "@hey-api/client-fetch": "^0.6.0",
        "@hey-api/openapi-ts": "^0.61.0",
    
        "@llamaindex/core": "workspace:*",
        "@llamaindex/env": "workspace:*",
    
        "bunchee": "6.4.0"
    
      },
      "peerDependencies": {
    
        "@llamaindex/core": "workspace:*",
        "@llamaindex/env": "workspace:*"