Files
langgraphjs/libs/create-langgraph/package.json
T
github-actions[bot] b949b85ebd chore: version packages (#1857)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2026-01-08 23:52:48 -08:00

52 lines
1.3 KiB
JSON

{
"name": "create-langgraph",
"version": "1.1.4",
"description": "Create a new LangGraph project",
"license": "MIT",
"main": "dist/index.js",
"bin": "dist/cli.js",
"type": "module",
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/langchain-ai/langgraphjs.git",
"directory": "libs/create-langgraph"
},
"scripts": {
"clean": "rm -rf dist/ .turbo/",
"cli": "tsx src/cli.mts",
"cli:watch": "tsx watch src/cli.mts",
"build": "yarn turbo:command build:internal --filter=create-langgraph",
"build:internal": "yarn clean && yarn tsc --outDir dist",
"prepublish": "yarn build",
"test": "vitest run",
"test:watch": "vitest",
"format": "prettier --write .",
"format:check": "prettier --check ."
},
"dependencies": {
"@clack/prompts": "^0.9.1",
"@commander-js/extra-typings": "^13.0.0",
"commander": "^13.0.0",
"dedent": "^1.5.3",
"extract-zip": "^2.0.1",
"picocolors": "^1.1.1"
},
"devDependencies": {
"@types/node": "^18.15.11",
"prettier": "^2.8.3",
"tsx": "^4.19.3",
"typescript": "^4.9.5 || ^5.4.5",
"vitest": "^4.0.16"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"keywords": []
}