Skip to content
Snippets Groups Projects
package.json 1.42 KiB
Newer Older
  "name": "create-llama",
  "keywords": [
    "rag",
    "llamaindex",
    "next.js"
  ],
  "description": "Create LlamaIndex-powered apps with one command",
  "repository": {
    "type": "git",
    "url": "https://github.com/run-llama/LlamaIndexTS",
    "directory": "packages/create-llama"
  },
  "license": "MIT",
  "bin": {
    "create-llama": "./dist/index.js"
  },
  "files": [
    "dist"
  ],
  "scripts": {
    "dev": "ncc build ./index.ts -w -o dist/",
    "build": "ncc build ./index.ts -o ./dist/ --minify --no-cache --no-source-map-register",
    "lint": "eslint . --ignore-pattern dist",
    "prepublishOnly": "cd ../../ && turbo run build"
  },
  "engines": {
    "node": ">=16.14.0"
  }
}