Skip to content
Snippets Groups Projects
package.json 1.73 KiB
Newer Older
  "name": "create-llama",
  "version": "0.0.28",
  "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": [
  ],
  "scripts": {
    "clean": "rimraf --glob ./dist ./templates/**/__pycache__ ./templates/**/node_modules ./templates/**/poetry.lock",
    "dev": "ncc build ./index.ts -w -o dist/",
    "build": "npm run clean && ncc build ./index.ts -o ./dist/ --minify --no-cache --no-source-map-register",
    "lint": "eslint . --ignore-pattern dist --ignore-pattern e2e/cache",
    "prepublishOnly": "cd ../../ && pnpm run build:release"
  },
  "devDependencies": {
yisding's avatar
yisding committed
  },
  "engines": {
    "node": ">=16.14.0"
  }