-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
113 lines (113 loc) · 3.58 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
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 <[email protected]>",
"license": "MIT",
"devDependencies": {
"@braintree/sanitize-url": "^7.1.0",
"@commitlint/cli": "19.5.0",
"@commitlint/config-conventional": "19.5.0",
"@eslint/compat": "^1.2.0",
"@eslint/js": "^9.12.0",
"@iconify/json": "2.2.272",
"@material/material-color-utilities": "^0.3.0",
"@material/web": "^2.0.0",
"@mermaid-js/mermaid-mindmap": "^9.3.0",
"@tsconfig/node20": "20.1.4",
"@types/eslint__js": "^8.42.3",
"@types/lodash-es": "4.17.12",
"@types/markdown-it": "14.1.2",
"@types/markdown-it-container": "2.0.10",
"@types/markdown-it-footnote": "3.0.4",
"@types/node": "22.9.0",
"@unocss/preset-attributify": "0.64.1",
"@unocss/preset-icons": "0.64.1",
"@unocss/preset-uno": "0.64.1",
"@unocss/transformer-compile-class": "0.64.1",
"@unocss/transformer-directives": "0.64.1",
"@unocss/transformer-variant-group": "0.64.1",
"@vue/eslint-config-prettier": "10",
"@vue/eslint-config-typescript": "14",
"@vue/tsconfig": "0.6.0",
"@vueuse/core": "11.2.0",
"@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.13.2",
"eslint-plugin-prettier": "5.2.1",
"eslint-plugin-promise": "7.1.0",
"eslint-plugin-vue": "9.31.0",
"husky": "9.1.6",
"lint-staged": "15.2.10",
"lodash-es": "4.17.21",
"markdown-it": "14.1.0",
"markdown-it-container": "4.0.0",
"markdown-it-footnote": "4.0.0",
"mermaid": "^11.0.0",
"neostandard": "^0.11.6",
"npm-run-all2": "7.0.1",
"postcss": "8.4.49",
"postcss-html": "1.7.0",
"postcss-scss": "4.0.9",
"prettier": "3.3.3",
"sass": "1.81.0",
"stylelint": "16.10.0",
"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.9.0",
"tailwindcss": "^3.4.10",
"typescript": "5.6.3",
"typescript-eslint": "^8.8.1",
"unocss": "0.64.1",
"unplugin-auto-import": "0.18.4",
"unplugin-icons": "0.20.1",
"unplugin-vue-components": "0.27.4",
"vite": "5.4.11",
"vite-plugin-vuetify": "^2.0.4",
"vitepress": "1.5.0",
"vitepress-plugin-mermaid": "^2.0.16",
"vue": "3.5.13",
"vuetify": "^3.7.0"
},
"dependencies": {
"@octokit/types": "^13.5.0",
"octokit": "^4.0.2"
},
"packageManager": "[email protected]"
}