-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
78 lines (78 loc) · 2.21 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
{
"name": "edex",
"version": "0.2.0",
"private": true,
"scripts": {
"vite-dev": "vite",
"vite-build": "tsc && vite build",
"tauri": "tauri",
"dev": "WEBKIT_DISABLE_DMABUF_RENDERER=1 tauri dev",
"build": "tauri build",
"build-debug": "tauri build --debug",
"format": "prettier --write .",
"lint": "eslint .",
"type-check": "tsc --pretty --noEmit",
"prepare": "husky"
},
"dependencies": {
"@solid-primitives/date": "2.0.24",
"@solid-primitives/keyboard": "1.2.8",
"@tauri-apps/api": "2.2.0",
"@tauri-apps/plugin-http": "2.2.0",
"@tauri-apps/plugin-log": "2.2.0",
"@tauri-apps/plugin-os": "2.2.0",
"@tauri-apps/plugin-shell": "2.2.0",
"@tauri-apps/plugin-store": "2.2.0",
"@xterm/addon-canvas": "0.7.0",
"@xterm/addon-clipboard": "0.1.0",
"@xterm/addon-fit": "0.10.0",
"@xterm/addon-unicode11": "0.8.0",
"@xterm/addon-web-links": "0.11.0",
"@xterm/addon-webgl": "0.18.0",
"@xterm/xterm": "5.5.0",
"augmented-ui": "2.0.0",
"clsx": "2.1.1",
"color": "4.2.3",
"lodash": "4.17.21",
"pretty-bytes": "6.1.1",
"smoothie": "1.36.1",
"solid-js": "1.9.3",
"tailwind-merge": "2.6.0"
},
"devDependencies": {
"@eslint/js": "9.17.0",
"@tauri-apps/cli": "2.2.2",
"@trivago/prettier-plugin-sort-imports": "4.3.0",
"@types/color": "4.2.0",
"@types/lodash": "4.17.14",
"@types/node": "22.10.5",
"@typescript-eslint/parser": "8.19.0",
"autoprefixer": "10.4.20",
"eslint": "9.17.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-promise": "7.2.1",
"eslint-plugin-solid": "0.14.5",
"eslint-plugin-tailwindcss": "3.17.5",
"globals": "15.14.0",
"husky": "9.1.7",
"lint-staged": "15.3.0",
"postcss": "8.4.49",
"prettier": "3.4.2",
"prettier-plugin-tailwindcss": "0.6.9",
"tailwindcss": "3.4.17",
"typescript": "5.7.2",
"typescript-eslint": "8.19.0",
"vite": "5.4.11",
"vite-plugin-eslint": "1.8.1",
"vite-plugin-solid": "2.11.0",
"vite-tsconfig-paths": "5.1.4"
},
"lint-staged": {
"*.{ts,tsx,js}": [
"eslint --cache --fix",
"npm run lint",
"npm run format"
],
"*.{js,css,md}": "prettier --write"
}
}