-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.06 KB
/
Copy pathpackage.json
File metadata and controls
83 lines (83 loc) · 2.06 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
{
"name": "hyper-magic-window-web-ui",
"version": "0.0.0",
"private": true,
"type": "module",
"devEngines": {
"runtime": {
"name": "node",
"onFail": "error"
},
"packageManager": {
"name": "pnpm",
"onFail": "error"
}
},
"scripts": {
"dev": "vite",
"build": "vite build",
"clean": "rimraf dist",
"preview": "vite preview",
"format": "prettier --write .",
"lint": "eslint \"src/**/*.{ts,tsx,js,mjs,cjs}\" \"vite.config.ts\"",
"lint:fix": "eslint \"src/**/*.{ts,tsx,js,mjs,cjs}\" \"vite.config.ts\" --fix",
"typecheck": "vue-tsc --noEmit"
},
"dependencies": {
"await-to-js": "^3.0.0",
"axios": "^1.7.7",
"crypto-es": "^2.1.0",
"crypto-js": "^4.2.0",
"github-markdown-css": "^5.8.1",
"highlight.js": "^11.10.0",
"hyper-magic-window-fonts": "git://github.com/sothx/hyper-magic-window-fonts.git#publish/v1.0.1",
"json-editor-vue": "^0.18.1",
"lodash-es": "^4.17.21",
"marked": "^15.0.12",
"mitt": "^3.0.1",
"naive-ui": "^2.40.1",
"pako": "^2.1.0",
"pinia": "^2.1.7",
"pinia-plugin-persistedstate": "^4.1.1",
"pinyin-match": "^1.2.8",
"svelte-jsoneditor": "^3.12.0",
"vanilla-jsoneditor": "^3.12.0",
"vfonts": "^0.0.3",
"vue": "^3.5.17",
"vue-router": "^4.5.1"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@headlessui/vue": "^1.7.23",
"@heroicons/vue": "^2.1.5",
"@types/crypto-js": "^4.2.2",
"@types/lodash-es": "^4.17.12",
"@types/node": "^24.0.10",
"@types/pako": "^2.0.3",
"@vitejs/plugin-legacy": "^5.4.3",
"@vitejs/plugin-vue": "^5.0.5",
"@vitejs/plugin-vue-jsx": "^4.0.0",
"eslint": "^10.1.0",
"eslint-plugin-vue": "^10.8.0",
"globals": "^17.4.0",
"postcss-preset-env": "^10.2.4",
"prettier": "^3.6.2",
"prettier-plugin-tailwindcss": "^0.6.13",
"rimraf": "^6.0.1",
"tailwindcss": "^3.4.17",
"terser": "^5.36.0",
"typescript": "~5.8.3",
"typescript-eslint": "^8.57.2",
"vite": "^5.3.1",
"vite-plugin-vue-devtools": "^7.3.1",
"vue-eslint-parser": "^10.4.0",
"vue-tsc": "^3.2.6"
},
"pnpm": {
"onlyBuiltDependencies": [
"core-js",
"esbuild",
"vue-demi"
]
}
}