-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.02 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.02 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
{
"name": "xipchat",
"version": "1.0.1",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"check": "svelte-check --tsconfig ./tsconfig.json",
"build:extension": "./scripts/build-extension.sh",
"package": "bun run build && ./scripts/build-extension.sh",
"version:patch": "bun version patch --no-git-tag-version",
"version:minor": "bun version minor --no-git-tag-version",
"version:major": "bun version major --no-git-tag-version"
},
"devDependencies": {
"@sveltejs/vite-plugin-svelte": "^6.1.4",
"@tailwindcss/postcss": "^4.1.12",
"@tsconfig/svelte": "^5.0.5",
"@types/chrome": "^0.1.6",
"@types/marked": "^5.0.2",
"@types/node": "^22.18.1",
"daisyui": "^5.1.6",
"postcss": "^8.5.6",
"svelte": "^5.38.6",
"svelte-check": "^4.3.1",
"tailwindcss": "^4.1.12",
"tslib": "^2.8.1",
"typescript": "^5.9.2",
"vite": "^7.1.4"
},
"dependencies": {
"groq-sdk": "^0.31.0",
"marked": "^16.2.1"
}
}