-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.76 KB
/
Copy pathpackage.json
File metadata and controls
53 lines (53 loc) · 1.76 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
{
"name": "webview",
"displayName": "Webview UI of the extension",
"description": "Webview UI for the Lightspeed extension",
"version": "0.3.0-next",
"type": "module",
"scripts": {
"preview": "vite preview",
"build": "vite build",
"test": "vitest run --coverage",
"test:watch": "vitest watch --coverage",
"format:check": "prettier --check \"src/**/*.ts\"",
"format:fix": "prettier --write \"src/**/*.{ts,svelte}\"",
"lint:check": "eslint . --ext js,ts,tsx",
"lint:fix": "eslint . --fix --ext js,ts,tsx",
"watch": "vite --mode development build -w"
},
"dependencies": {
"deep-chat": "^2.2.0",
"inversify": "^7.11.0",
"svelte-preprocess": "^6.0.5"
},
"devDependencies": {
"@fortawesome/fontawesome-free": "^7.0.0",
"@fortawesome/free-brands-svg-icons": "^7.0.0",
"@fortawesome/free-regular-svg-icons": "^7.0.1",
"@fortawesome/free-solid-svg-icons": "^7.0.0",
"@podman-desktop/ui-svelte": "1.28.2",
"@podman-desktop/webview-api": "1.28.2",
"@sveltejs/vite-plugin-svelte": "^7",
"@tailwindcss/typography": "^0.5.16",
"@tailwindcss/vite": "^4.3.1",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/svelte": "^5.2.7",
"@testing-library/user-event": "^14.6.1",
"@tsconfig/svelte": "^5.0.6",
"@types/humanize-duration": "^3.27.4",
"@typescript-eslint/eslint-plugin": "^8.62.1",
"@typescript-eslint/parser": "^8.30.1",
"jsdom": "^29.1.1",
"prettier": "^3.8.4",
"prettier-plugin-svelte": "^4.1.1",
"reflect-metadata": "^0.2.2",
"svelte": "^5",
"svelte-fa": "^4.0.3",
"svelte-markdown": "^0.4.1",
"svelte-preprocess": "^6.0.5",
"tailwindcss": "^4",
"vite": "^8.0",
"vitest": "^3"
}
}