-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1021 Bytes
/
package.json
File metadata and controls
44 lines (44 loc) · 1021 Bytes
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
{
"name": "@stacktrace/ui",
"version": "0.7.0",
"type": "module",
"scripts": {
"dev": "vite build --watch",
"build": "vite build",
"type-check": "vue-tsc --build --force",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs"
},
"main": "./dist/ui.js",
"types": "./dist/ui.d.ts",
"files": [
"dist",
"resources/js"
],
"exports": {
".": {
"import": "./dist/ui.js",
"types": "./dist/ui.d.ts"
}
},
"dependencies": {
"@inertiajs/vue3": "^2.3.9",
"@vueuse/core": "^13.5.0",
"lodash": "^4.17.21",
"query-string": "^9.2.2",
"reka-ui": "^2.3.2",
"vue": "^3.5.17"
},
"devDependencies": {
"@tsconfig/node20": "^20.1.6",
"@types/lodash": "^4.17.10",
"@types/node": "^20.12.5",
"@vitejs/plugin-vue": "^6.0.0",
"@vue/tsconfig": "^0.7.0",
"typescript": "~5.8.2",
"vite": "^6.3.5",
"vite-plugin-dts": "^4.5.4",
"vue-tsc": "^2.2.12"
}
}