-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
101 lines (101 loc) · 2.79 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "@tresjs/leches",
"type": "module",
"version": "0.14.1",
"packageManager": "[email protected]",
"description": "Tasty GUI for Vue controls 🍰",
"author": "Alvaro Saburido <[email protected]> (https://github.com/alvarosabu/)",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/Tresjs/leches.git"
},
"keywords": [
"vue",
"gui",
"pane",
"controls"
],
"sideEffects": false,
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/tresleches.js"
},
"./styles": "./dist/tresleches.css",
"./*": "./*"
},
"main": "./dist/tresleches.js",
"module": "./dist/tresleches.js",
"types": "./dist/index.d.ts",
"files": [
"*.d.ts",
"dist"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"dev": "cd playground && pnpm run dev",
"build": "vite build",
"preview": "vite preview",
"playground": "cd playground && pnpm run dev",
"test": "vitest",
"test:ci": "vitest run",
"test:ui": "vitest --ui",
"test:browser": "BROWSER_TEST=true HEADLESS=true vitest",
"test:browser:ui": "BROWSER_TEST=true vitest",
"release": "release-it",
"coverage": "vitest run --coverage",
"lint": "eslint .",
"story:dev": "histoire dev",
"story:build": "histoire build",
"story:preview": "histoire preview",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs"
},
"peerDependencies": {
"vue": ">=3.3.4"
},
"dependencies": {
"@unocss/core": "^65.4.2",
"@vueuse/components": "^12.4.0"
},
"devDependencies": {
"@histoire/plugin-vue": "^0.17.17",
"@iconify-json/ic": "^1.2.2",
"@iconify/json": "^2.2.296",
"@release-it/conventional-changelog": "^10.0.0",
"@tresjs/eslint-config": "^1.4.0",
"@tresjs/eslint-config-vue": "^0.2.1",
"@typescript-eslint/eslint-plugin": "^8.20.0",
"@typescript-eslint/parser": "^8.20.0",
"@vitejs/plugin-vue": "^5.2.1",
"@vitest/browser": "^3.0.1",
"@vitest/ui": "^3.0.1",
"@vue/test-utils": "^2.4.6",
"@vueuse/core": "^12.4.0",
"@vueuse/shared": "^12.4.0",
"eslint": "^9.18.0",
"eslint-plugin-vitest-globals": "^1.5.0",
"eslint-plugin-vue": "^9.32.0",
"histoire": "^0.17.17",
"kolorist": "^1.8.0",
"pathe": "^2.0.2",
"release-it": "^18.1.1",
"rollup-plugin-analyzer": "^4.0.0",
"rollup-plugin-visualizer": "^5.14.0",
"typescript": "^5.7.3",
"unocss": "^65.4.2",
"unplugin-vue-components": "^28.0.0",
"vite": "^6.0.7",
"vite-plugin-banner": "^0.8.0",
"vite-plugin-css-injected-by-js": "^3.5.2",
"vite-plugin-dts": "^4.5.0",
"vitepress": "1.5.0",
"vitest": "^3.0.1",
"vue": "^3.5.13",
"webdriverio": "^9.5.7"
}
}