Skip to content
Snippets Groups Projects
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
This project manages its dependencies using npm. Learn more
package.json 2.07 KiB
{
  "name": "@llamaindex/experimental",
  "description": "Experimental package for LlamaIndexTS",
  "version": "0.0.35",
  "type": "module",
  "types": "dist/type/index.d.ts",
  "main": "dist/cjs/index.js",
  "exports": {
    ".": {
      "workerd": {
        "types": "./dist/type/index.d.ts",
        "default": "./dist/index.polyfill.js"
      },
      "edge-light": {
        "types": "./dist/type/index.d.ts",
        "default": "./dist/index.polyfill.js"
      },
      "import": {
        "types": "./dist/type/index.d.ts",
        "default": "./dist/index.js"
      },
      "require": {
        "types": "./dist/type/index.d.ts",
        "default": "./dist/cjs/index.js"
      }
    },
    "./*": {
      "import": {
        "types": "./dist/type/*.d.ts",
        "default": "./dist/*.js"
      },
      "require": {
        "types": "./dist/type/*.d.ts",
        "default": "./dist/cjs/*.js"
      }
    }
  },
  "files": [
    "dist",
    "CHANGELOG.md",
    "!**/*.tsbuildinfo"
  ],
  "repository": {
    "type": "git",
    "url": "https://github.com/run-llama/LlamaIndexTS.git",
    "directory": "packages/experimental"
  },
  "scripts": {
    "lint": "eslint .",
    "build": "rm -rf ./dist && pnpm run build:esm && pnpm run build:cjs && pnpm run build:type",
    "build:esm": "swc src -d dist --strip-leading-paths --config-file ../../.swcrc",
    "build:cjs": "swc src -d dist/cjs --strip-leading-paths --config-file ../../.cjs.swcrc",
    "build:type": "tsc -p tsconfig.json",
    "postbuild": "node -e \"require('fs').writeFileSync('./dist/cjs/package.json', JSON.stringify({ type: 'commonjs' }))\"",
    "dev": "concurrently \"pnpm run build:esm --watch\" \"pnpm run build:cjs --watch\" \"pnpm run build:type --watch\""
  },
  "devDependencies": {
    "@aws-crypto/sha256-js": "^5.2.0",
    "@swc/cli": "^0.3.12",
    "@swc/core": "^1.6.3",
    "@types/jsonpath": "^0.2.4",
    "concurrently": "^8.2.2",
    "pathe": "^1.1.2"
  },
  "dependencies": {
    "@types/lodash": "^4.17.5",
    "@types/node": "^20.12.11",
    "jsonpath": "^1.1.1",
    "llamaindex": "workspace:*",
    "lodash": "^4.17.21"
  }
}