Skip to content
Snippets Groups Projects
package.json 1.67 KiB
Newer Older
  "name": "create-llama",
  "version": "0.0.31",
  "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"
  "author": "LlamaIndex Team <info@runllama.ai>",
  "license": "MIT",
  "bin": {
    "create-llama": "./dist/index.js"
  },
  "files": [
    "dist"
  ],
  "scripts": {
    "dev": "ncc build ./index.ts -w -o dist/",
    "prerelease": "node ../../scripts/rm.mjs dist",
    "release": "ncc build ./index.ts -o ./dist/ --minify --no-cache --no-source-map-register",
    "prepublishOnly": "cd ../../ && turbo run build",
    "build": "pnpm release",
    "lint-fix": "pnpm prettier -w --plugin prettier-plugin-tailwindcss 'templates/*-tw/{ts,js}/{app,pages}/**/*.{js,ts,tsx}'"
  },
  "devDependencies": {
    "@types/async-retry": "1.4.2",
    "@types/ci-info": "2.0.0",
    "@types/cross-spawn": "6.0.0",
    "@types/node": "^20.2.5",
    "@types/prompts": "2.0.1",
    "@types/tar": "6.1.5",
    "@types/validate-npm-package-name": "3.0.0",
    "@vercel/ncc": "0.34.0",
    "async-retry": "1.3.1",
  },
  "engines": {
    "node": ">=16.14.0"
  }
}