-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.57 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.57 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
{
"name": "@crob/vue-stack-grid",
"version": "1.1.1",
"description": "A simple, efficient Vue 3 component for creating stacked grid layouts. It automatically adjusts items into a grid based on available space, with customizable column widths and gutters for precise layout control. Ideal for fluid, responsive designs.",
"type": "module",
"files": [
"dist",
"types"
],
"main": "./dist/vue-stack-grid.umd.cjs",
"module": "./dist/vue-stack-grid.js",
"types": "./dist/types/index.d.ts",
"exports": {
".": {
"types": "./dist/types/index.d.ts",
"import": "./dist/vue-stack-grid.js",
"require": "./dist/vue-stack-grid.umd.cjs"
},
"./style.css": "./dist/style.css"
},
"scripts": {
"dev": "vite",
"build": "vue-tsc && vite build",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"typecheck": "vue-tsc --noEmit"
},
"peerDependencies": {
"vue": "^3.3.0"
},
"devDependencies": {
"@types/node": "^24.10.0",
"@vitejs/plugin-vue": "^6.0.1",
"@vitest/coverage-v8": "^4.0.8",
"@vue/test-utils": "^2.4.6",
"happy-dom": "^20.0.10",
"typescript": "^5.9.3",
"vite": "7.1.11",
"vite-plugin-css-injected-by-js": "^3.5.2",
"vite-plugin-dts": "^4.5.4",
"vitest": "^4.0.8",
"vue-tsc": "^3.1.3"
},
"keywords": [
"vue3",
"stack",
"grid",
"layout",
"typescript"
],
"repository": {
"type": "git",
"url": "git+https://github.com/chiribuc/vue-stack-grid.git"
},
"author": "Robert-Cristian Chiribuc",
"license": "MIT"
}