-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.91 KB
/
package.json
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
{
"name": "github-metrics",
"type": "module",
"version": "0.0.0",
"description": "Discover comprehensive insights into your GitHub repositories' metrics. Track stars, forks, and more, all conveniently stored locally",
"license": "AGPL-3.0-or-later",
"scripts": {
"preinstall": "npx only-allow pnpm",
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"lint:ts": "vue-tsc --noEmit",
"lint:js": "eslint .",
"lint:js:fix": "npm run lint:js -- --fix",
"lint:css": "stylelint **/*{.scss,.vue}",
"lint:css:fix": "npm run lint:css -- --fix",
"lint:all": "npm run lint:ts && npm run lint:js && npm run lint:css"
},
"dependencies": {
"@octokit/core": "^6.1.2",
"@tabler/icons-vue": "^3.24.0",
"@vitejs/plugin-vue": "^5.2.1",
"@vueuse/core": "^12.0.0",
"@vueuse/integrations": "^12.0.0",
"dayjs": "^1.11.13",
"http-status-codes": "^2.3.0",
"semver": "^7.6.3",
"sortablejs": "^1.15.6",
"vite": "^6.0.3",
"vite-plugin-pwa": "^0.21.1",
"vue": "^3.5.13",
"vue-dompurify-html": "^5.2.0"
},
"devDependencies": {
"@antfu/eslint-config": "^3.11.2",
"@octokit/types": "^13.6.2",
"@stylistic/stylelint-plugin": "^3.1.1",
"@types/node": "^22.10.2",
"@types/semver": "^7.5.8",
"eslint": "^9.16.0",
"postcss-html": "^1.7.0",
"postcss-scss": "^4.0.9",
"sass": "^1.82.0",
"stylelint": "^16.11.0",
"stylelint-config-recess-order": "^5.1.1",
"stylelint-config-standard-scss": "^14.0.0",
"stylelint-declaration-block-no-ignored-properties": "^2.8.0",
"stylelint-order": "^6.0.4",
"stylelint-rem-over-px": "^1.0.2",
"type-fest": "^4.30.0",
"typescript": "^5.6.3",
"vue-router": "^4.5.0",
"vue-tsc": "^2.1.10",
"workbox-core": "^7.3.0",
"workbox-precaching": "^7.3.0",
"workbox-routing": "^7.3.0",
"workbox-strategies": "^7.3.0",
"workbox-window": "^7.3.0"
}
}