Files
create-agent-chat-app/package.json
T
2025-03-13 12:48:56 -07:00

74 lines
2.0 KiB
JSON

{
"name": "create-agent-chat-app",
"version": "0.0.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@1.22.22",
"main": "index.js",
"author": "Brace Sproul",
"license": "MIT",
"type": "module",
"bin": {
"create-agent-chat-app": "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"
},
"dependencies": {
"chalk": "^5.3.0",
"fs-extra": "^11.2.0",
"prompts": "^2.4.2"
},
"devDependencies": {
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.9.1",
"@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": "^5.59.8",
"@typescript-eslint/parser": "^5.59.8",
"dotenv": "^16.4.7",
"eslint": "^8.41.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-no-instanceof": "^1.0.1",
"eslint-plugin-prettier": "^4.2.1",
"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"
]
}