Basic Structure

This commit is contained in:
2025-08-24 15:16:02 -05:00
parent 797fb638f4
commit 9a176a7735
11 changed files with 139 additions and 8 deletions

29
package.json Normal file
View File

@@ -0,0 +1,29 @@
{
"name": "blight",
"version": "1.0.0",
"description": "TODO",
"main": "index.js",
"scripts": {
"start": "npx tsc && node dist/index.js",
"test": "jest"
},
"repository": {
"type": "git",
"url": "http://192.168.2.114:3000/artanis/Blight.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"type": "commonjs",
"devDependencies": {
"@types/dockerode": "^3.3.43",
"@types/jest": "^30.0.0",
"jest": "^30.0.5",
"ts-jest": "^29.4.1",
"typescript": "^5.9.2"
},
"dependencies": {
"dockerode": "^4.0.7",
"langchain": "^0.3.31"
}
}