-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
111 lines (111 loc) · 3.21 KB
/
Copy pathpackage.json
File metadata and controls
111 lines (111 loc) · 3.21 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"name": "githelm",
"version": "2.0.0",
"private": true,
"type": "module",
"packageManager": "pnpm@10.16.1",
"scripts": {
"dev": "vite",
"test": "vitest run",
"test:watch": "vitest",
"test:ui": "vitest --ui",
"test:coverage": "vitest run --coverage",
"test:e2e": "playwright test",
"test:e2e:chromium": "playwright test --project=chromium",
"test:e2e:firefox": "playwright test --project=firefox",
"test:e2e:webkit": "playwright test --project=webkit",
"test:e2e:ui": "playwright test --ui",
"test:e2e:report": "playwright show-report",
"build": "vite build",
"serve": "vite preview",
"postinstall": "pnpm svelte-kit sync",
"check": "svelte-check --tsconfig ./tsconfig.json",
"lint": "eslint --ext .js,.ts,.svelte .",
"lint:fix": "eslint --ext .js,.ts,.svelte --fix .",
"format": "prettier --write .",
"format:check": "prettier --check ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/Steven-Harris/githelm.git"
},
"author": "steven-harris",
"bugs": {
"url": "https://github.com/Steven-Harris/githelm/issues"
},
"homepage": "https://githelm.com",
"engines": {
"node": ">=20.19.0 || >=22.12.0",
"pnpm": ">=9.0.0"
},
"dependencies": {
"@octokit/core": "^7.0.6",
"@octokit/plugin-retry": "^8.1.0",
"@octokit/plugin-throttling": "^11.0.3",
"@sentry/browser": "^10.48.0",
"@sentry/svelte": "^10.48.0",
"@sentry/sveltekit": "^10.48.0",
"@sentry/vite-plugin": "^5.3.0",
"firebase": "^12.12.0",
"highlight.js": "^11.11.1",
"marked": "^18.0.4",
"tailwindcss": "^4.2.2"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@octokit/types": "^16.0.0",
"@playwright/test": "^1.59.1",
"@sveltejs/adapter-static": "^3.0.10",
"@sveltejs/kit": "^2.57.1",
"@sveltejs/vite-plugin-svelte": "^7.1.2",
"@tailwindcss/vite": "^4.2.2",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/svelte": "^5.3.1",
"@tsconfig/svelte": "5.0.8",
"@typescript-eslint/eslint-plugin": "^8.58.1",
"@typescript-eslint/parser": "^8.58.1",
"@vite-pwa/assets-generator": "^1.0.2",
"@vite-pwa/sveltekit": "^1.1.0",
"@vitest/coverage-v8": "^4.1.4",
"@vitest/ui": "^4.1.4",
"eslint": "^10.4.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.5",
"eslint-plugin-svelte": "^3.17.0",
"firebase-tools": "^15.14.0",
"jsdom": "^29.1.1",
"msw": "^2.13.2",
"prettier": "^3.8.2",
"prettier-plugin-svelte": "^4.0.1",
"sharp": "0.34.5",
"sharp-ico": "0.1.5",
"svelte": "^5.55.3",
"svelte-check": "^4.4.6",
"svelte-eslint-parser": "^1.6.0",
"svelte-preprocess": "^6.0.3",
"tslib": "2.8.1",
"typescript": "^6.0.3",
"typescript-eslint": "^8.58.1",
"vite": "^8.0.14",
"vite-plugin-compression": "^0.5.1",
"vite-plugin-pwa": "^1.2.0",
"vitest": "^4.1.4",
"workbox-window": "^7.4.0"
},
"pnpm": {
"onlyBuiltDependencies": [
"@firebase/util",
"@sentry/cli",
"@tailwindcss/oxide",
"esbuild",
"msw",
"protobufjs",
"re2",
"sharp",
"svelte-preprocess"
],
"overrides": {
"cookie": ">=0.7.0"
}
}
}