Files
create-agent-chat-app/package.json
T
2025-04-10 09:41:27 -07:00

79 lines
2.3 KiB
JSON

{
"name": "create-agent-chat-app",
"version": "0.1.6",
"description": "Create a LangGraph chat app with one command",
"repository": {
"type": "git",
"url": "git+https://github.com/langchain-ai/create-agent-chat-app.git"
},
"homepage": "https://github.com/langchain-ai/create-agent-chat-app/blob/main/README.md",
"packageManager": "yarn@3.5.1",
"main": "index.js",
"author": "Brace Sproul",
"license": "MIT",
"type": "module",
"bin": "index.js",
"engines": {
"node": ">=16.0.0"
},
"files": [
"index.js",
"gitignore.js",
"templates/**"
],
"scripts": {
"build": "tsc ./src/*.ts --esModuleInterop --target es2020 --module esnext --moduleResolution node --outDir .",
"prepublishOnly": "npm run build",
"clean": "rm -rf src/index.js",
"format": "prettier --write . --ignore-path .prettierignore",
"lint": "eslint 'src/**/*.{ts,tsx}'",
"lint:fix": "eslint 'src/**/*.{ts,tsx}' --fix",
"format:check": "prettier --check . --ignore-path .prettierignore",
"e2e": "./scripts/run-all-e2e-local.sh",
"e2e:npm": "./scripts/run-e2e-local.sh npm cleanup",
"e2e:yarn": "./scripts/run-e2e-local.sh yarn cleanup",
"e2e:pnpm": "./scripts/run-e2e-local.sh pnpm cleanup",
"e2e:cleanup": "./scripts/cleanup-tests.sh"
},
"dependencies": {
"@clack/prompts": "^0.10.0",
"chalk": "^5.3.0",
"commander": "^13.1.0",
"fs-extra": "^11.2.0"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.0",
"@eslint/js": "^9.22.0",
"@jest/globals": "^29.7.0",
"@tsconfig/recommended": "^1.0.7",
"@types/fs-extra": "^11.0.4",
"@types/jest": "^29.5.0",
"@types/node": "^22.10.6",
"@types/prompts": "^2.4.9",
"@typescript-eslint/eslint-plugin": "^8.26.1",
"@typescript-eslint/parser": "^8.26.1",
"dotenv": "^16.4.7",
"eslint": "^9.19.0",
"eslint-config-prettier": "^10.1.1",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-no-instanceof": "^1.0.1",
"eslint-plugin-prettier": "^5.2.3",
"globals": "^16.0.0",
"jest": "^29.7.0",
"prettier": "^3.3.3",
"ts-jest": "^29.1.0",
"tsx": "^4.19.2",
"typescript": "^5.3.3"
},
"keywords": [
"langgraph",
"starter",
"template",
"create-app",
"vite",
"react",
"langchain",
"openai"
]
}