-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
97 lines (97 loc) · 3.62 KB
/
package.json
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
{
"name": "synthient-core",
"version": "0.1.0",
"private": true,
"license": "by-nc-4.0",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"test": "jest",
"licenses": "license-checker --production --direct --json | jq 'map_values(del(.path, .licenseFile))' > licensing/sublicenses.json && license-checker --production --direct --summary > licensing/summary.txt",
"extractForLLM": "find src/rakis-core -type f \\( -name \"*.sql\" -o -name \"*.ts\" -o -name \"*.csv\" -o -name \"*.md\" -o -name \"*.tsx\" \\) -not -path \"src/rakis-core/synthient-chain/p2p-networks/nkn.ts\" -not -path \"src/rakis-core/synthient-chain/p2p-networks/pewpewdb.ts\" -not -path \"src/rakis-core/synthient-chain/p2p-networks/trystero.ts\" -not -path \"src/rakis-core/synthient-chain/utils/logger.ts\" -not -path \"src/rakis-core/synthient-chain/utils/deferredpromise.ts\" -not -path \"src/rakis-core/synthient-chain/utils/simple-crypto.ts\" -print -exec cat {} \\; | sed -E 's/import[^;]+;//g' > help/core-code-for-LLMs.txt",
"updateTODOs": "bun run todos/todo-extractor.ts"
},
"dependencies": {
"@ai-sdk/anthropic": "^0.0.25",
"@ai-sdk/openai": "^0.0.33",
"@mlc-ai/web-llm": "^0.2.35",
"@noble/ed25519": "^2.1.0",
"@radix-ui/react-avatar": "^1.0.4",
"@radix-ui/react-checkbox": "^1.0.4",
"@radix-ui/react-collapsible": "^1.0.3",
"@radix-ui/react-dialog": "^1.0.5",
"@radix-ui/react-icons": "^1.3.0",
"@radix-ui/react-label": "^2.0.2",
"@radix-ui/react-popover": "^1.0.7",
"@radix-ui/react-progress": "^1.0.3",
"@radix-ui/react-select": "^2.0.0",
"@radix-ui/react-separator": "^1.0.3",
"@radix-ui/react-slot": "^1.0.2",
"@radix-ui/react-switch": "^1.0.3",
"@radix-ui/react-tabs": "^1.0.4",
"@radix-ui/react-toast": "^1.1.5",
"@radix-ui/react-tooltip": "^1.0.7",
"@radix-ui/themes": "^3.0.5",
"@react-three/drei": "^9.105.6",
"@react-three/fiber": "^8.16.6",
"@shopify/react-web-worker": "^5.0.17",
"@tanstack/react-query": "^5.40.1",
"@types/jest": "^29.5.12",
"@types/three": "^0.164.1",
"@uidotdev/usehooks": "^2.4.1",
"@vercel/analytics": "^1.3.1",
"@waku/discovery": "0.0.2-73d4f19.0",
"@waku/sdk": "0.0.25-73d4f19.0",
"@xenova/transformers": "^2.17.1",
"ai": "^3.2.11",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"cmdk": "^1.0.0",
"cos-similarity": "^2.0.0",
"dexie": "^4.0.7",
"eventemitter3": "^5.0.1",
"fake-indexeddb": "^6.0.0",
"gun": "^0.2020.1240",
"javascript-time-ago": "^2.5.10",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"lodash": "^4.17.21",
"lucide-react": "^0.379.0",
"next": "14.2.3",
"nkn-sdk": "^1.3.2",
"plotly.js": "^2.32.0",
"protobufjs": "^7.3.0",
"react": "^18",
"react-dom": "^18",
"react-lottie": "^1.2.4",
"react-markdown": "^9.0.1",
"react-plotly.js": "^2.6.0",
"remark-gfm": "^4.0.0",
"tailwind-merge": "^2.3.0",
"tailwindcss-animate": "^1.0.7",
"three": "^0.164.1",
"trystero": "^0.18.0",
"umap-js": "^1.4.0",
"viem": "2.x",
"wagmi": "^2.9.11"
},
"devDependencies": {
"@types/glob": "^8.1.0",
"@types/javascript-time-ago": "^2.0.8",
"@types/lodash": "^4.17.4",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"@types/react-lottie": "^1.2.10",
"@types/react-plotly.js": "^2.6.3",
"eslint": "^8",
"eslint-config-next": "14.2.3",
"glob": "^10.4.2",
"license-checker": "^25.0.1",
"postcss": "^8",
"tailwindcss": "^3.4.1",
"typescript": "^5"
}
}