-
Notifications
You must be signed in to change notification settings - Fork 39
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 2.83 KB
/
Copy pathpackage.json
File metadata and controls
97 lines (97 loc) · 2.83 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
{
"name": "nodeget-board",
"version": "0.0.0",
"private": true,
"type": "module",
"scripts": {
"dev": "vite",
"build": "run-s generate:typed-router \"build:app {@}\" --",
"build:app": "run-p type-check \"build-only {@}\" --",
"preview": "vite preview",
"build-only": "vite build",
"type-check": "vue-tsc --build",
"format": "prettier --write .",
"test": "node --test --experimental-strip-types tests/*.test.ts",
"prepare": "husky",
"generate:typed-router": "vite build --config scripts/typed-router.d.ts/config.ts"
},
"dependencies": {
"@codemirror/lang-javascript": "^6.2.5",
"@codemirror/lang-json": "^6.0.2",
"@codemirror/language": "^6.12.3",
"@codemirror/legacy-modes": "^6.5.2",
"@codemirror/state": "^6.6.0",
"@codemirror/theme-one-dark": "^6.1.3",
"@tailwindcss/typography": "^0.5.19",
"@tailwindcss/vite": "^4.1.18",
"@tanstack/vue-table": "^8.21.3",
"@vue/devtools-api": "6.6.4",
"@types/qrcode": "^1.5.6",
"@vueuse/core": "^14.2.0",
"@xterm/addon-fit": "^0.11.0",
"@xterm/xterm": "^6.0.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"codemirror": "^6.0.2",
"compare-versions": "^6.1.1",
"diff": "^8.0.4",
"echarts": "^6.0.0",
"fflate": "^0.8.2",
"lucide-vue-next": "^0.563.0",
"markdown-it": "^14.1.1",
"modern-screenshot": "^4.6.8",
"pinia": "^3.0.4",
"pinia-plugin-persistedstate": "^4.7.1",
"qrcode": "^1.5.4",
"reka-ui": "^2.9.2",
"smol-toml": "^1.6.1",
"tailwind-merge": "^3.4.0",
"tailwindcss": "^4.1.18",
"three": "^0.183.2",
"uplot": "^1.6.32",
"vue": "^3.5.27",
"vue-codemirror": "^6.1.1",
"vue-i18n": "^11.3.0",
"vue-router": "^4.6.4",
"vue-sonner": "^2.0.9",
"vue3-colorpicker": "^2.3.0"
},
"devDependencies": {
"@tsconfig/node24": "^24.0.4",
"@types/diff": "^8.0.0",
"@types/markdown-it": "^14.1.2",
"@types/node": "^24.10.9",
"@types/three": "^0.183.1",
"@typescript-eslint/parser": "^8.56.1",
"@vitejs/plugin-vue": "^6.0.3",
"@vitejs/plugin-vue-jsx": "^5.1.3",
"@vue/eslint-config-prettier": "^10.2.0",
"@vue/eslint-config-typescript": "^14.7.0",
"@vue/tsconfig": "^0.8.1",
"eslint": "^10.0.0",
"eslint-plugin-vue": "^10.8.0",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"npm-run-all2": "^8.0.4",
"prettier": "^3.8.1",
"prettier-plugin-tailwindcss": "^0.8.0",
"tw-animate-css": "^1.4.0",
"typescript": "~5.9.3",
"unplugin-vue-router": "^0.19.2",
"vite": "^7.3.1",
"vite-plugin-vue-devtools": "^8.0.5",
"vue-tsc": "^3.2.4"
},
"engines": {
"node": "^20.19.0 || >=22.12.0"
},
"lint-staged": {
"*.{js,ts,vue,jsx,tsx}": [
"prettier --write",
"eslint --fix"
],
"*.{css,scss,html}": [
"prettier --write"
]
}
}