-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
93 lines (93 loc) · 3 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
{
"name": "libertai-ui",
"version": "0.0.1",
"description": "A UI for decentralized AI",
"productName": "LibertAI UI",
"author": "LibertAI Team",
"contributors": [
"David Amelekh <[email protected]>",
"Reza Rahemtola <[email protected]>"
],
"private": true,
"license": "MIT",
"engines": {
"node": ">=20.0",
"yarn": "please-use-npm",
"npm": "10.x"
},
"scripts": {
"lint": "eslint --fix --ext .js,.ts,.vue ./",
"lint:check": "eslint --ext .js,.ts,.vue ./",
"format": "prettier --write \"**/*.{js,ts,vue,scss,html,md,json}\"",
"format:check": "prettier --check \"**/*.{js,ts,vue,scss,html,md,json}\"",
"dev": "quasar dev",
"build": "quasar build",
"generate-clients": "npm run generate-subscriptions-client; npm run generate-agents-client",
"generate-subscriptions-client": "openapi-ts --input http://localhost:8000/openapi.json --output ./src/apis/subscriptions --client @hey-api/client-axios",
"generate-agents-client": "openapi-ts --input http://localhost:8001/openapi.json --output ./src/apis/agents --client @hey-api/client-axios"
},
"dependencies": {
"@aleph-sdk/base": "^1.2.0",
"@aleph-sdk/client": "^1.2.0",
"@aleph-sdk/message": "^1.2.0",
"@aleph-sdk/solana": "^1.2.1",
"@hey-api/client-axios": "^0.2.9",
"@libertai/libertai-js": "0.0.10",
"@quasar/extras": "^1.16.12",
"@solana/web3.js": "^1.95.4",
"@tanstack/vue-query": "^5.59.16",
"@wagmi/vue": "^0.0.56",
"axios": "^1.7.7",
"dayjs": "^1.11.13",
"dompurify": "^3.1.7",
"dotenv": "^16.4.5",
"eciesjs": "^0.4.10",
"ethers": "^5.7.2",
"filesize": "^10.1.6",
"highlight.js": "^11.10.0",
"langchain": "^0.2.13",
"marked": "^14.0.0",
"marked-highlight": "^2.1.4",
"mime": "^4.0.4",
"ml-distance": "^4.0.1",
"pdfjs-dist": "^4.7.76",
"pinia": "^2.2.1",
"pinia-plugin-persistedstate": "^3.2.1",
"quasar": "^2.16.8",
"solana-wallets-vue": "^0.6.1",
"stream": "^0.0.3",
"uuid": "^10.0.0",
"viem": "^2.21.35",
"vue": "^3.5.12",
"vue-router": "^4.4.3",
"web3": "^4.14.0",
"zod": "^3.23.8"
},
"devDependencies": {
"@hey-api/openapi-ts": "^0.53.12",
"@quasar/app-vite": "^1.9.4",
"@types/dompurify": "^3.0.5",
"@types/node": "^20.17.1",
"@typescript-eslint/eslint-plugin": "^8.11.0",
"@typescript-eslint/parser": "^8.11.0",
"@vue/eslint-config-typescript": "^13.0.0",
"autoprefixer": "^10.4.20",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-perfectionist": "^3.9.1",
"eslint-plugin-vue": "^9.29.1",
"postcss": "^8.4.47",
"prettier": "^3.3.3",
"tailwindcss": "^3.4.14",
"typescript": "^5.6.3",
"vite-plugin-checker": "^0.7.2",
"vite-plugin-environment": "^1.1.3",
"vite-plugin-node-polyfills": "^0.22.0",
"vue-eslint-parser": "^9.4.3",
"vue-tsc": "^2.0.29"
},
"overrides": {
"vite": "^4.0.0",
"@vitejs/plugin-vue": "^4.0.0"
}
}