-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
117 lines (117 loc) · 3.48 KB
/
Copy pathpackage.json
File metadata and controls
117 lines (117 loc) · 3.48 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
{
"name": "typemore",
"version": "0.0.0",
"private": true,
"type": "module",
"packageManager": "pnpm@10.33.0",
"engines": {
"node": ">=20.19.0"
},
"scripts": {
"dev": "vite",
"preview": "vite preview",
"build": "vite build",
"tauri": "tauri",
"tauri:dev": "tauri dev",
"tauri:build": "tauri build",
"type-check": "vue-tsc --noEmit && tsc --noEmit -p tsconfig.node.json",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write src/",
"lint:style": "stylelint \"src/**/*.{vue,scss}\"",
"test": "vitest run",
"test:dev": "vitest",
"test:coverage": "vitest run --coverage",
"test:e2e": "playwright test",
"prepare": "husky",
"lint:staged": "lint-staged"
},
"lint-staged": {
"*.{js,ts,vue}": "eslint --fix",
"*.scss": "stylelint --fix"
},
"dependencies": {
"@lucide/vue": "^1.26.0",
"@tailwindcss/vite": "^4.3.3",
"@tanstack/vue-query": "^5.101.4",
"@tanstack/vue-virtual": "^3.13.34",
"@tauri-apps/api": "^2.11.1",
"@typemore/core": "workspace:*",
"@vee-validate/valibot": "^4.15.1",
"@vueuse/core": "^14.3.0",
"@vueuse/integrations": "^14.3.0",
"@vueuse/sound": "^2.1.3",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"dayjs": "^1.11.21",
"howler": "^2.2.4",
"html2canvas": "^1.4.1",
"lucide-vue-next": "^1.0.0",
"motion-v": "^2.3.0",
"neverthrow": "^8.2.0",
"ofetch": "^1.5.1",
"pinia": "^4.0.2",
"pinia-plugin-persistedstate": "^4.7.1",
"reka-ui": "^2.10.1",
"tailwind-merge": "^3.6.0",
"tailwindcss": "^4.3.3",
"tw-animate-css": "^1.4.0",
"universal-cookie": "^8.1.2",
"valibot": "^1.4.2",
"vee-validate": "^4.15.1",
"vue": "^3.5.40",
"vue-i18n": "^11.4.7",
"vue-router": "^5.2.0",
"vue-sonner": "^2.0.9"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@iconify-json/tabler": "^1.2.37",
"@pinia/testing": "^2.0.1",
"@playwright/test": "^1.61.1",
"@tauri-apps/cli": "^2.11.4",
"@tsconfig/node22": "^22.0.5",
"@types/howler": "^2.2.12",
"@types/node": "^26.1.1",
"@vitejs/plugin-vue": "^6.0.8",
"@vitejs/plugin-vue-jsx": "^5.1.6",
"@vitest/coverage-v8": "^4.1.10",
"@vue/eslint-config-prettier": "^10.2.0",
"@vue/eslint-config-typescript": "^14.9.0",
"@vue/test-utils": "^2.4.11",
"@vue/tsconfig": "^0.9.1",
"change-case": "^5.4.4",
"eslint": "^10.7.0",
"eslint-plugin-security": "^4.0.1",
"eslint-plugin-vue": "^10.10.0",
"eslint-plugin-vuejs-accessibility": "^2.5.0",
"fast-check": "^4.9.0",
"fontaine": "^0.8.0",
"globals": "^17.7.0",
"happy-dom": "^20.11.0",
"husky": "^9.1.7",
"lint-staged": "^17.1.1",
"postcss-html": "^1.8.1",
"prettier": "^3.9.6",
"rollup-plugin-visualizer": "^7.0.1",
"sass": "^1.101.3",
"shadcn-vue": "^2.8.0",
"stylelint": "^17.14.1",
"stylelint-config-css-modules": "^4.6.0",
"stylelint-config-recess-order": "^7.7.0",
"stylelint-config-recommended-scss": "^17.0.1",
"stylelint-config-recommended-vue": "^1.6.1",
"stylelint-config-standard": "^40.0.0",
"stylelint-config-standard-scss": "^17.0.0",
"stylelint-prettier": "^5.0.3",
"stylelint-scss": "^7.2.0",
"typescript": "^6.0.3",
"typescript-eslint": "^8.65.0",
"unplugin-icons": "^23.0.1",
"vite": "^8.1.5",
"vite-plugin-vue-devtools": "^8.1.5",
"vitest": "^4.1.10",
"vue-eslint-parser": "^10.4.1",
"vue-tsc": "^3.3.7"
}
}