-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.25 KB
/
Copy pathpackage.json
File metadata and controls
79 lines (79 loc) · 2.25 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
{
"name": "@agent-smith/ui",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "vite",
"preview": "vite preview --port 5173",
"local": "node dist/bin/index.js",
"server": "node --loader ts-node/esm --watch src/bin/index.ts",
"build:check": "mkdir -p src/apps",
"build:compile": "vite build && cp -r src/apps dist/",
"build:compress": "gzipper c ./dist --verbose --incremental --exclude avif,jpg --threshold 999 --remove-larger --brotli --brotli-param-mode font",
"build:server": "tsc -p tsconfig_bin.json",
"build": "run-s build:check build:compile build:server"
},
"dependencies": {
"@agent-smith/app-debate": "file:../agent-smith-apps/debate",
"@agent-smith/server": "^0.2.1",
"@agent-smith/wscli": "^0.0.8",
"@fontsource/roboto": "^5.2.10",
"@primeuix/themes": "^2.0.3",
"@primevue/themes": "^4.5.4",
"@snowind/header": "^0.1.0",
"@snowind/plugin": "^0.5.0",
"@snowind/state": "^0.2.0",
"@snowind/switch": "^0.1.1",
"@tailwindcss/vite": "^4.3.2",
"@vueuse/core": "^14.3.0",
"highlight.js": "^11.11.1",
"markstream-vue": "^1.0.5",
"mermaid": "^11.16.0",
"modprompt": "^0.14.3",
"primeicons": "^7.0.0",
"primevue": "^4.5.5",
"restmix": "^0.6.1",
"stream-markdown": "^0.0.16",
"stream-monaco": "^0.0.47",
"tailwindcss-primeui": "^0.6.1",
"vue": "3.5.39",
"vue-router": "5.1.0",
"vuecodit": "^0.0.11",
"yaml": "^2.9.0"
},
"devDependencies": {
"@agent-smith/types": "^0.0.8",
"@iconify/json": "^2.2.498",
"@tailwindcss/forms": "^0.5.11",
"@types/node": "^26.1.1",
"@vitejs/plugin-vue": "6.0.7",
"@vue/compiler-sfc": "3.5.39",
"autoprefixer": "^10.5.2",
"gzipper": "^8.3.0",
"npm-run-all": "^4.1.5",
"path": "^0.12.7",
"postcss": "8.5.16",
"sass": "1.101.0",
"tailwindcss": "^4.3.2",
"tailwindcss-primeui": "^0.6.1",
"tailwindcss-semantic-colors": "^0.6.0",
"ts-node": "^10.9.2",
"tslib": "2.8.1",
"typescript": "^7.0.2",
"vite": "8.1.4"
},
"type": "module",
"preferGlobal": true,
"main": "./dist/main.js",
"exports": {
".": {
"import": "./dist/main.js"
}
},
"files": [
"dist"
],
"bin": {
"lmui": "./dist/bin/server.js"
}
}