-
-
Notifications
You must be signed in to change notification settings - Fork 565
Expand file tree
/
Copy pathpackage.json
More file actions
147 lines (147 loc) · 4.44 KB
/
package.json
File metadata and controls
147 lines (147 loc) · 4.44 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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
{
"name": "fluidd",
"version": "1.36.2",
"private": true,
"type": "module",
"description": "fluidd, a klipper web client.",
"author": {
"name": "Craig Bassett"
},
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"start": "vite",
"serve": "vite",
"serve:prod": "vite preview --port 5000",
"serve:docs": "cd ./docs; bundle exec jekyll serve",
"lint": "eslint .",
"bootstrap": "husky",
"i18n-extract": "vue-i18n-extract --vueFiles './src/**/*.?(ts|vue)' --languageFiles './src/locales/**/*.?(json|yaml|yml)'",
"release": "standard-version",
"release:major": "npm run release -- --release-as major",
"release:minor": "npm run release -- --release-as minor",
"release:patch": "npm run release -- --release-as patch",
"release:rc": "npm run release -- --prerelease rc",
"test": "npm run test:unit",
"test:unit": "vitest --environment jsdom --config ./vitest.config.ts",
"type-check": "vue-tsc --build --noEmit",
"circular-check": "skott --displayMode=file-tree --showCircularDependencies --no-trackTypeOnlyDependencies --tsconfig=./tsconfig.app.json",
"theme:convert": "cd tools; node convertTheme.mjs"
},
"main": "index.js",
"dependencies": {
"@ctrl/tinycolor": "^4.2.0",
"@fontsource/raleway": "^5.2.8",
"@fontsource/roboto": "^5.2.9",
"@irojs/iro-core": "^1.2.1",
"@jaames/iro": "^5.5.2",
"axios": "^1.13.5",
"consola": "^3.4.2",
"dompurify": "^3.3.1",
"echarts": "^5.6.0",
"echarts-gl": "^2.0.9",
"hls.js": "^1.6.15",
"ipaddr.js": "^2.3.0",
"jwt-decode": "^4.0.0",
"lodash-es": "^4.17.23",
"marked": "^17.0.3",
"marked-base-url": "^1.1.8",
"md5": "^2.3.0",
"monaco-editor": "^0.54.0",
"monaco-editor-textmate": "^4.0.0",
"monaco-textmate": "^3.0.1",
"onigasm": "^2.2.5",
"panzoom": "^9.4.3",
"path-browserify": "^1.0.1",
"qr-scanner": "^1.4.2",
"qrcode.vue": "^1.7.0",
"semver": "^7.7.4",
"shlex": "^3.0.0",
"sortablejs": "^1.15.7",
"uuid": "^13.0.0",
"vue": "^2.7.16",
"vue-class-component": "^7.2.6",
"vue-echarts": "^7.0.3",
"vue-i18n": "^8.28.2",
"vue-inline-svg": "^2.1.4",
"vue-json-viewer": "^2.2.22",
"vue-meta": "^2.4.0",
"vue-property-decorator": "^9.1.2",
"vue-router": "^3.6.5",
"vue-virtual-scroller": "^1.1.2",
"vue2-touch-events": "^3.2.3",
"vuetify": "^2.7.2",
"vuetify-confirm": "^2.0.6",
"vuex": "^3.6.2"
},
"devDependencies": {
"@mdi/js": "^7.4.47",
"@originjs/vite-plugin-content": "^1.0.5",
"@types/jsdom": "^27.0.0",
"@types/lodash-es": "^4.17.12",
"@types/md5": "^2.3.6",
"@types/node": "^24.10.13",
"@types/semver": "^7.7.1",
"@types/sortablejs": "^1.15.9",
"@vitejs/plugin-vue2": "^2.3.4",
"@vue/eslint-config-typescript": "^14.7.0",
"@vue/test-utils": "^1.3.6",
"@vue/tsconfig": "~0.1.3",
"eslint": "^9.39.2",
"eslint-plugin-regexp": "^3.0.0",
"eslint-plugin-vue": "^9.33.0",
"husky": "^9.1.7",
"jsdom": "^28.1.0",
"mockdate": "^3.0.5",
"monaco-vscode-textmate-theme-converter": "^0.1.7",
"neostandard": "^0.12.2",
"rollup": "^4.57.1",
"sass": "^1.97.2",
"skott": "^0.35.7",
"standard-version": "^9.5.0",
"svgo": "^4.0.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.56.0",
"unplugin-vue-components": "^30.0.0",
"vite": "^7.3.1",
"vite-plugin-checker": "^0.12.0",
"vite-plugin-monaco-editor-esm": "^2.0.2",
"vite-plugin-pwa": "^1.2.0",
"vitest": "^3.2.4",
"vue-debounce-decorator": "^1.0.1",
"vue-i18n-extract": "^2.0.7",
"vue-template-compiler": "^2.7.16",
"vue-tsc": "~3.0.8",
"workbox-build": "^7.4.0",
"workbox-core": "^7.4.0",
"workbox-precaching": "^7.4.0",
"workbox-recipes": "^7.4.0",
"workbox-routing": "^7.4.0",
"workbox-strategies": "^7.4.0",
"workbox-window": "^7.4.0"
},
"_id": "fluidd@0.0.3",
"bugs": {
"url": "https://github.com/fluidd-core/fluidd/issues"
},
"homepage": "https://github.com/fluidd-core/fluidd#readme",
"keywords": [
"klipper"
],
"license": "GPL-3.0",
"readme": "README.md",
"repository": {
"type": "git",
"url": "git+https://github.com/fluidd-core/fluidd.git"
},
"overrides": {
"xlsx": "https://cdn.sheetjs.com/xlsx-0.20.3/xlsx-0.20.3.tgz",
"vite-plugin-checker": {
"vue-tsc": "$vue-tsc"
}
},
"engines": {
"node": "^22 || ^24"
}
}