-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 2 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
{
"name": "github-metrics",
"type": "module",
"private": true,
"license": "AGPL-3.0-or-later",
"engines": {
"node": ">=24"
},
"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": "^7.0.6",
"@tabler/icons-vue": "^3.37.1",
"@vitejs/plugin-vue": "^6.0.4",
"@vueuse/core": "^14.2.1",
"@vueuse/integrations": "^14.2.1",
"dayjs": "^1.11.19",
"http-status-codes": "^2.3.0",
"semver": "^7.7.4",
"sortablejs": "^1.15.7",
"vite": "^7.3.1",
"vite-plugin-pwa": "^1.2.0",
"vue": "^3.5.29",
"vue-dompurify-html": "^5.3.0",
"workbox-window": "^7.4.0"
},
"devDependencies": {
"@antfu/eslint-config": "7.4.3",
"@octokit/types": "^16.0.0",
"@stylistic/stylelint-plugin": "^5.0.1",
"@total-typescript/ts-reset": "^0.6.1",
"@types/node": "^25.3.2",
"@types/semver": "^7.7.1",
"@types/sortablejs": "^1.15.9",
"eslint": "~9.39.3",
"mime-type": "^5.0.3",
"postcss-html": "^1.8.1",
"postcss-scss": "^4.0.9",
"sass-embedded": "^1.97.3",
"stylelint": "^17.4.0",
"stylelint-config-recess-order": "^7.6.1",
"stylelint-config-standard-scss": "^17.0.0",
"stylelint-declaration-block-no-ignored-properties": "^3.0.0",
"stylelint-order": "^7.0.1",
"stylelint-rem-over-px": "^1.0.2",
"type-fest": "^5.4.4",
"typescript": "^5.9.3",
"vue-router": "^5.0.3",
"vue-tsc": "^3.2.5"
},
"pnpm": {
"overrides": {
"is-core-module": "npm:@nolyfill/is-core-module@^1",
"safe-buffer": "npm:@nolyfill/safe-buffer@^1",
"string.prototype.matchall": "npm:@nolyfill/string.prototype.matchall@^1"
}
}
}