Skip to content
Snippets Groups Projects
package.json 1.7 KiB
Newer Older
  • Learn to ignore specific revisions
  •   "name": "create-llama",
    
      "version": "0.0.23",
    
      "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",
    
        "prepublishOnly": "cd ../../ && pnpm run build:release"
    
      },
      "devDependencies": {
    
    yisding's avatar
    yisding committed
      },
      "engines": {
        "node": ">=16.14.0"
      }