-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.27 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 2.27 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
{
"name": "@llm-auto-optimizer/core",
"version": "0.1.0",
"description": "Intelligent LLM model optimization system with webhook notifications",
"main": "dist/functions.js",
"types": "dist/index.d.ts",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"repository": {
"type": "git",
"url": "https://github.com/globalbusinessadvisors/llm-auto-optimizer.git"
},
"bugs": {
"url": "https://github.com/globalbusinessadvisors/llm-auto-optimizer/issues"
},
"homepage": "https://github.com/globalbusinessadvisors/llm-auto-optimizer#readme",
"scripts": {
"gcp-build": "",
"build": "tsc",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:integration": "jest --testMatch='**/tests/integration/**/*.test.ts'",
"test:security": "jest --testMatch='**/tests/integration/security.test.ts'",
"test:performance": "jest --testMatch='**/tests/integration/performance.test.ts'",
"test:all": "jest --coverage --verbose",
"lint": "eslint src --ext .ts",
"lint:fix": "eslint src --ext .ts --fix",
"format": "prettier --write \"src/**/*.ts\" \"tests/**/*.ts\"",
"type-check": "tsc --noEmit",
"start": "node dist/server.js"
},
"dependencies": {
"@slack/bolt": "^3.17.1",
"@slack/web-api": "^6.11.2",
"axios": "^1.6.2",
"dotenv": "^16.3.1",
"uuid": "^9.0.1"
},
"optionalDependencies": {
"@llm-dev-ops/llm-cost-ops-sdk": "^0.1.0",
"@llm-devops/latency-lens": "^0.1.0",
"@llm-dev-ops/sentinel-cli": "^0.1.0",
"llm-shield-core": "^0.2.1",
"@llm-dev-ops/observatory-sdk": "^0.1.0",
"@llm-dev-ops/llm-config-core": "^0.1.0"
},
"devDependencies": {
"@types/jest": "^29.5.11",
"@types/node": "^20.10.6",
"@types/uuid": "^9.0.7",
"@typescript-eslint/eslint-plugin": "^6.17.0",
"@typescript-eslint/parser": "^6.17.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.2",
"jest": "^29.7.0",
"nock": "^13.5.0",
"prettier": "^3.1.1",
"ts-jest": "^29.1.1",
"typescript": "^5.3.3"
},
"keywords": [
"llm",
"optimization",
"webhooks",
"ai",
"devops"
],
"author": "LLM DevOps Contributors",
"license": "Apache-2.0"
}