-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.78 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.78 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
{
"name": "transparency-logic-time-machine-bots",
"version": "1.0.0",
"description": "The Grand United Fields of Theories",
"main": "src/index.ts",
"scripts": {
"lint": "eslint . --ext .ts,.js",
"lint:fix": "eslint . --ext .ts,.js --fix",
"format": "prettier --write \"**/*.{ts,js,json,md}\"",
"format:check": "prettier --check \"**/*.{ts,js,json,md}\"",
"test": "node --test",
"validate:config": "node dist/config/validator.js",
"build": "tsc",
"prepare": "husky install || true"
},
"keywords": [
"transparency",
"logic",
"time-machine",
"bots"
],
"author": "",
"license": "MIT",
"devDependencies": {
"@types/node": "^20.10.0",
"@typescript-eslint/eslint-plugin": "^6.13.0",
"@typescript-eslint/parser": "^6.13.0",
"eslint": "^8.54.0",
"eslint-config-prettier": "^9.1.0",
"husky": "^8.0.3",
"lint-staged": "^15.2.0",
"prettier": "^3.1.0",
"typescript": "^5.3.0"
},
"dependencies": {
"@opentelemetry/api": "^1.7.0",
"@opentelemetry/sdk-node": "^0.45.0",
"@opentelemetry/auto-instrumentations-node": "^0.40.0",
"@opentelemetry/resources": "^1.18.0",
"@opentelemetry/semantic-conventions": "^1.18.0",
"zod": "^3.22.0"
},
"optionalDependencies": {
"@anthropic-ai/sdk": "^0.20.0",
"@huggingface/transformers": "^2.6.0",
"langchain": "^0.3.80",
"@langchain/anthropic": "^0.3.0",
"@langchain/community": "^0.3.0",
"pinecone-client": "^1.1.0",
"weaviate-ts-client": "^1.4.0",
"chromadb": "^1.7.0",
"@anchordotdev/anchor": "^0.1.0",
"openai": "^4.28.0",
"cohere-ai": "^7.7.0",
"ai": "^6.0.49"
},
"lint-staged": {
"*.{ts,js}": [
"eslint --fix",
"prettier --write"
],
"*.{json,md}": [
"prettier --write"
]
}
}