Skip to content
Snippets Groups Projects
package.json 2.14 KiB
Newer Older
  • Learn to ignore specific revisions
  •   "name": "create-llama",
    
      "version": "0.0.29",
    
      "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",
    
        "format": "prettier --ignore-unknown --cache --check .",
        "format:write": "prettier --ignore-unknown --write .",
    
        "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",
    
        "prepare": "husky",
        "release": "pnpm run build && changeset publish",
        "new-version": "pnpm run build && changeset version"
    
      },
      "devDependencies": {
    
    yisding's avatar
    yisding committed
      },
      "engines": {
        "node": ">=16.14.0"
      }