-
Notifications
You must be signed in to change notification settings - Fork 70
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.9 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 2.9 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
80
81
{
"name": "webapp",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "nodemon --watch src --ext ts,js,tsx,jsx,json --exec 'npm run build'",
"dev:chat": "vite dev --config vite.config.dev.ts",
"build": "tsc -b && npm run _build:default && npm run _build:background && npm run _build:intermediate && npm run _build:settings && npm run _build:popup",
"_build": "vite build",
"_build:default": "VITE_CONFIG=default npm run _build",
"_build:office": "VITE_CONFIG=office npm run _build",
"_build:background": "VITE_CONFIG=background npm run _build",
"_build:intermediate": "VITE_CONFIG=intermediate npm run _build",
"_build:settings": "VITE_CONFIG=settings npm run _build",
"_build:popup": "VITE_CONFIG=popup npm run _build",
"lint": "eslint .",
"format": "prettier --write .",
"build:local:chrome": "bash -c 'source ./scripts/build-local-chrome.sh'",
"build:stg:chrome": "bash -c 'source ./scripts/build-stg-chrome.sh'",
"build:prd:chrome": "bash -c 'source ./scripts/build-prd-chrome.sh'",
"build:prd:safari": "bash -c 'source ./scripts/build-prd-safari.sh'"
},
"dependencies": {
"@buf/googleapis_googleapis.bufbuild_es": "^2.2.3-20250211200939-546238c53f73.1",
"@bufbuild/protobuf": "^2.11.0",
"@grafana/faro-web-sdk": "^2.2.4",
"@grafana/faro-web-tracing": "^2.2.4",
"@heroui/react": "2.8.9",
"@iconify/react": "^6.0.2",
"@lukemorales/query-key-factory": "^1.3.4",
"@r2wc/react-to-web-component": "^2.1.0",
"@streamdown/cjk": "^1.0.2",
"@streamdown/code": "^1.0.2",
"@streamdown/math": "^1.0.2",
"@streamdown/mermaid": "^1.0.2",
"@tailwindcss/postcss": "^4.2.0",
"@tailwindcss/vite": "^4.2.0",
"@tanstack/react-query": "^5.90.21",
"@types/diff": "^8.0.0",
"axios": "^1.13.5",
"diff": "^8.0.3",
"events": "^3.3.0",
"framer-motion": "12.34.2",
"highlight.js": "^11.11.1",
"immer": "11.1.4",
"react": "19.2.4",
"react-dom": "19.2.4",
"react-rnd": "^10.5.2",
"semver": "^7.7.4",
"streamdown": "^2.2.0",
"tailwindcss": "^4.2.0",
"tw-shimmer": "^0.4.6",
"uuid": "^13.0.0",
"zustand": "^5.0.11"
},
"devDependencies": {
"@codemirror/state": "^6.5.4",
"@codemirror/view": "^6.39.14",
"@eslint/js": "^10.0.1",
"@grafana/faro-rollup-plugin": "^0.8.2",
"@types/bun": "^1.3.9",
"@types/chrome": "^0.0.326",
"@types/codemirror": "^5.60.17",
"@types/events": "^3.0.3",
"@types/node": "^25.2.3",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@types/semver": "^7.7.1",
"@vitejs/plugin-react-swc": "^4.2.3",
"eslint": "^9.28.0",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.20",
"globals": "^17.3.0",
"nodemon": "^3.1.11",
"prettier": "3.8.1",
"typescript": "~5.9.3",
"typescript-eslint": "^8.56.0",
"vite": "^7.3.1"
}
}