Skip to content
Snippets Groups Projects
package.json 1.64 KiB
Newer Older
  • Learn to ignore specific revisions
  •   "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",
        "ci-info": "watson/ci-info#f43f6a1cefff47fb361c88cf4b943fdbcaafe540",
        "commander": "2.20.0",
        "conf": "10.2.0",
        "cross-spawn": "7.0.3",
        "fast-glob": "3.3.1",
        "got": "10.7.0",
        "picocolors": "1.0.0",
        "prettier-plugin-tailwindcss": "0.3.0",
        "prompts": "2.1.0",
        "tar": "6.1.15",
        "update-check": "1.5.4",
    
      },
      "engines": {
        "node": ">=16.14.0"
      }
    }