-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
113 lines (113 loc) · 3.58 KB
/
package.json
File metadata and controls
113 lines (113 loc) · 3.58 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
112
113
{
"name": "wiki",
"version": "1.0.0",
"description": "",
"main": "index.js",
"type": "module",
"engines": {
"node": ">=20"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"docs:dev": "vitepress dev",
"docs:build": "vitepress build",
"docs:preview": "vitepress preview",
"lint": "run-p lint:*",
"lint:css": "stylelint --allow-empty-input \"**/*.{css,scss,vue}\"",
"lint:es": "eslint --cache",
"lint:ts": "tsc --noEmit",
"lint:prettier": "prettier --check .",
"fmt": "run-s fmt:*",
"fmt:css": "stylelint --fix --allow-empty-input \"**/*.{css,scss,vue}\"",
"fmt:es": "eslint --fix --cache .",
"fmt:prettier": "prettier --write .",
"prepare": "husky"
},
"keywords": [],
"author": "keiko233 <i@elaina.moe>",
"license": "MIT",
"devDependencies": {
"@braintree/sanitize-url": "^7.1.0",
"@commitlint/cli": "19.6.1",
"@commitlint/config-conventional": "19.6.0",
"@eslint/compat": "^1.2.0",
"@eslint/js": "^9.12.0",
"@iconify/json": "2.2.463",
"@material/material-color-utilities": "^0.4.0",
"@material/web": "^2.0.0",
"@mermaid-js/mermaid-mindmap": "^9.3.0",
"@tsconfig/node20": "20.1.9",
"@types/eslint__js": "^8.42.3",
"@types/lodash-es": "4.17.12",
"@types/markdown-it": "14.1.2",
"@types/markdown-it-container": "2.0.11",
"@types/markdown-it-footnote": "3.0.4",
"@types/node": "22.19.17",
"@unocss/preset-attributify": "0.65.4",
"@unocss/preset-icons": "0.65.4",
"@unocss/preset-uno": "0.65.4",
"@unocss/transformer-compile-class": "0.65.4",
"@unocss/transformer-directives": "0.65.4",
"@unocss/transformer-variant-group": "0.65.4",
"@vue/eslint-config-prettier": "10",
"@vue/eslint-config-typescript": "14",
"@vue/tsconfig": "0.9.1",
"@vueuse/core": "12.8.2",
"@vueuse/motion": "^2.2.3",
"@wojtekmaj/color-utils": "^3.2.1",
"autoprefixer": "^10.4.20",
"cytoscape": "^3.30.2",
"cytoscape-cose-bilkent": "^4.1.0",
"dayjs": "^1.11.12",
"debug": "^4.3.6",
"eslint": "^9.12.0",
"eslint-config-prettier": "9.1.0",
"eslint-import-resolver-alias": "1.1.2",
"eslint-plugin-html": "8.1.2",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-n": "17.15.1",
"eslint-plugin-prettier": "5.2.2",
"eslint-plugin-promise": "7.2.1",
"eslint-plugin-vue": "9.32.0",
"husky": "9.1.7",
"lint-staged": "15.4.1",
"lodash-es": "4.18.1",
"markdown-it": "14.1.1",
"markdown-it-container": "4.0.0",
"markdown-it-footnote": "4.0.0",
"mermaid": "^11.0.0",
"neostandard": "^0.13.0",
"npm-run-all2": "7.0.2",
"postcss": "8.5.10",
"postcss-html": "1.8.1",
"postcss-scss": "4.0.9",
"prettier": "3.4.2",
"sass": "1.99.0",
"stylelint": "16.13.2",
"stylelint-config-html": "1.1.0",
"stylelint-config-rational-order": "0.1.2",
"stylelint-config-recess-order": "5.1.1",
"stylelint-config-standard": "36.0.1",
"stylelint-declaration-block-no-ignored-properties": "2.8.0",
"stylelint-order": "6.0.4",
"stylelint-scss": "6.10.1",
"tailwindcss": "^3.4.10",
"typescript": "5.9.3",
"typescript-eslint": "^8.8.1",
"unocss": "0.65.4",
"unplugin-auto-import": "19.3.0",
"unplugin-icons": "22.5.0",
"unplugin-vue-components": "28.8.0",
"vite": "6.4.2",
"vite-plugin-vuetify": "^2.0.4",
"vitepress": "1.6.4",
"vitepress-plugin-mermaid": "^2.0.16",
"vue": "3.5.32",
"vuetify": "^3.7.0"
},
"dependencies": {
"@octokit/types": "^13.5.0",
"octokit": "^4.0.2"
},
"packageManager": "pnpm@10.33.0"
}