-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
111 lines (111 loc) · 3.51 KB
/
package.json
File metadata and controls
111 lines (111 loc) · 3.51 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
{
"name": "glyph",
"private": true,
"version": "0.1.0",
"license": "MIT",
"description": "Local-first desktop code workspace built with Tauri, React, and TypeScript",
"author": "webrenew",
"repository": {
"type": "git",
"url": "https://github.com/webrenew/Glyph.git"
},
"homepage": "https://github.com/webrenew/Glyph",
"bugs": {
"url": "https://github.com/webrenew/Glyph/issues"
},
"keywords": [
"code-editor",
"tauri",
"desktop-app",
"react",
"typescript"
],
"type": "module",
"scripts": {
"dev": "vite",
"icons:sync": "node scripts/sync-file-icons.mjs",
"lint": "eslint .",
"ultracite:check": "prettier --check . && stylelint \"**/*.css\" --config stylelint.config.mjs",
"ultracite:fix": "prettier --write . && stylelint \"**/*.css\" --config stylelint.config.mjs --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"typecheck": "tsc --noEmit && tsc --noEmit -p tsconfig.node.json",
"verify": "pnpm lint && pnpm typecheck && pnpm build && pnpm ultracite:check",
"prepare": "husky",
"build": "tsc && vite build",
"preview": "vite preview",
"tauri": "tauri"
},
"dependencies": {
"@codemirror/commands": "^6.10.3",
"@codemirror/language": "^6.12.3",
"@codemirror/language-data": "^6.5.2",
"@codemirror/merge": "^6.12.1",
"@codemirror/search": "^6.6.0",
"@codemirror/state": "^6.6.0",
"@codemirror/view": "^6.40.0",
"@fontsource/dm-sans": "^5.2.8",
"@lezer/highlight": "^1.2.3",
"@streamdown/code": "^1.1.1",
"@tailwindcss/vite": "^4.2.2",
"@tauri-apps/api": "^2",
"@tauri-apps/plugin-dialog": "~2",
"@xterm/addon-fit": "^0.11.0",
"@xterm/addon-unicode11": "^0.9.0",
"@xterm/addon-web-links": "^0.12.0",
"@xterm/xterm": "^6.0.0",
"iconoir-react": "^7.11.0",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"streamdown": "^2.5.0",
"tailwindcss": "^4.2.2"
},
"pnpm": {
"overrides": {
"lodash-es": ">=4.18.0"
}
},
"devDependencies": {
"@eslint/js": "^9.39.4",
"@tanstack/eslint-plugin-query": "5.95.2",
"@tauri-apps/cli": "^2",
"@types/react": "^19.1.8",
"@types/react-dom": "^19.1.6",
"@typescript-eslint/eslint-plugin": "8.57.2",
"@typescript-eslint/parser": "8.57.2",
"@vitejs/plugin-react": "^4.6.0",
"@webrenew/unicon": "^0.3.2",
"eslint": "^9.39.4",
"eslint-config-prettier": "10.1.8",
"eslint-import-resolver-typescript": "4.4.4",
"eslint-plugin-compat": "7.0.1",
"eslint-plugin-cypress": "6.2.1",
"eslint-plugin-github": "6.0.0",
"eslint-plugin-html": "8.1.4",
"eslint-plugin-import-x": "4.16.2",
"eslint-plugin-jsx-a11y": "6.10.2",
"eslint-plugin-n": "17.24.0",
"eslint-plugin-prettier": "5.5.5",
"eslint-plugin-promise": "7.2.1",
"eslint-plugin-react": "7.37.5",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-react-refresh": "^0.5.2",
"eslint-plugin-sonarjs": "4.0.2",
"eslint-plugin-storybook": "10.3.3",
"eslint-plugin-unicorn": "64.0.0",
"eslint-plugin-unused-imports": "4.4.1",
"globals": "^17.4.0",
"husky": "^9.1.7",
"prettier": "^3.8.1",
"prettier-plugin-svelte": "^3.5.1",
"prettier-plugin-tailwindcss": "^0.7.2",
"stylelint": "^17.6.0",
"stylelint-config-idiomatic-order": "^10.0.0",
"stylelint-config-standard": "^40.0.0",
"stylelint-prettier": "^5.0.3",
"typescript": "~5.8.3",
"typescript-eslint": "^8.58.0",
"ultracite": "7.4.3",
"vite": "^7.3.2"
}
}