forked from awslabs/LISA
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
129 lines (129 loc) · 3.38 KB
/
Copy pathpackage.json
File metadata and controls
129 lines (129 loc) · 3.38 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
{
"name": "@awslabs/lisa",
"version": "5.3.0",
"description": "A scalable infrastructure-as-code solution for self-hosting and orchestrating LLM inference with RAG capabilities, providing low-latency access to generative AI and embedding models across multiple providers.",
"homepage": "https://awslabs.github.io/LISA/",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/awslabs/lisa.git"
},
"bugs": {
"url": "https://github.com/awslabs/lisa/issues"
},
"author": "Amazon Web Services (https://aws.amazon.com)",
"keywords": [
"aws",
"bedrock",
"chatbot",
"generative-ai",
"langchain",
"litellm",
"llm",
"large-language-model",
"openai",
"rag",
"retrieval-augmented-generation"
],
"workspaces": [
"lib/user-interface/react",
"lib/docs",
"ecs_model_deployer",
"vector_store_deployer",
"cypress"
],
"scripts": {
"build": "tsc && npm run build -ws",
"deploy": "tsx ./bin/lisa.ts",
"copy-dist": "cp VERSION ./dist/",
"clean": "npm run clean -ws && rm -rf dist node_modules cdk.out build",
"watch": "tsc -w",
"test": "jest",
"cdk": "cdk",
"prepare": "husky",
"prepublishOnly": "npm run build && npm run copy-dist -ws",
"migrate-properties": "node ./scripts/migrate-properties.mjs",
"generateSchemaDocs": "npx zod2md -c ./lib/zod2md.config.ts && npx zod2md -c ./lib/zod2md.rag.ts"
},
"devDependencies": {
"@aws-cdk/aws-lambda-python-alpha": "2.125.0-alpha.0",
"@aws-sdk/client-iam": "^3.738.0",
"@aws-sdk/client-ssm": "^3.738.0",
"@cdklabs/cdk-enterprise-iac": "^0.0.512",
"@stylistic/eslint-plugin": "^2.13.0",
"@types/jest": "^29.5.14",
"@types/js-yaml": "^4.0.9",
"@types/lodash": "^4.17.15",
"@types/node": "^22.13.4",
"@types/readline-sync": "^1.4.8",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"aws-cdk": "^2.184.0",
"depcheck": "^1.4.7",
"esbuild": "^0.25.2",
"eslint": "^8.57.1",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-react-refresh": "^0.4.18",
"globals": "^16.3.0",
"husky": "^9.1.7",
"jest": "^29.7.0",
"lint-staged": "^15.4.3",
"readline-sync": "^1.4.10",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"tsx": "^4.19.3",
"typescript": "~5.1.6",
"wait-on": "^8.0.3",
"zod2md": "^0.1.9"
},
"dependencies": {
"aws-cdk-lib": "^2.189.1",
"aws-sdk": "^2.1692.0",
"cdk-ecr-deployment": "^4.0.1",
"cdk-nag": "^2.35.5",
"constructs": "^10.4.2",
"js-yaml": "^4.1.0",
"lodash": "^4.17.21",
"source-map-support": "^0.5.21",
"util": "^0.12.5",
"zod": "^3.24.1"
},
"peerDependencies": {
"@cfworker/json-schema": "^4.1.0",
"@types/lodash": "^4.17.14",
"micromark": "4.0.0",
"micromark-core-commonmark": "2.0.1"
},
"lint-staged": {
"*.ts": [
"eslint --fix",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"ts-node": {
"esm": true,
"experimentalSpecifierResolution": "node"
},
"main": "jest.config.js",
"directories": {
"lib": "lib",
"test": "test"
},
"files": [
"VERSION",
"bin",
"lib",
"lisa-sdk",
"lambda",
"scripts",
"ecs_model_deployer",
"vector_store_deployer",
"dist"
]
}