-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.83 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.83 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
{
"name": "frontend",
"displayName": "frontend UI",
"description": "Frontend UI for the Hello World extension",
"version": "0.5.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": {
"svelte-preprocess": "^6.0.2",
"tinro": "^0.6.12"
},
"devDependencies": {
"@fortawesome/fontawesome-free": "^7.1.0",
"@fortawesome/free-brands-svg-icons": "^7.1.0",
"@fortawesome/free-regular-svg-icons": "^7.1.0",
"@fortawesome/free-solid-svg-icons": "^7.1.0",
"@podman-desktop/ui-svelte": "1.23.1",
"@sveltejs/vite-plugin-svelte": "5.1.0",
"@tailwindcss/typography": "^0.5.19",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/svelte": "^5.2.9",
"@testing-library/user-event": "^14.6.1",
"@tsconfig/svelte": "^5.0.6",
"@types/humanize-duration": "^3.27.4",
"@types/node": "^25.0.0",
"@typescript-eslint/eslint-plugin": "^8.48.1",
"@typescript-eslint/parser": "^6.21.0",
"autoprefixer": "^10.4.22",
"filesize": "^11.0.13",
"humanize-duration": "^3.33.2",
"jsdom": "^27.2.0",
"moment": "^2.30.1",
"postcss": "^8.5.6",
"postcss-load-config": "^6.0.1",
"prettier": "^3.6.2",
"prettier-plugin-svelte": "^3.4.0",
"svelte": "5.45.6",
"svelte-fa": "^4.0.4",
"svelte-markdown": "^0.4.1",
"svelte-preprocess": "^6.0.2",
"tailwindcss": "^3.4.10",
"vite": "^7.2.7",
"vitest": "^2.0.2"
}
}