-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
64 lines (64 loc) · 1.81 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
{
"name": "@crob/vue-stack-grid",
"version": "1.0.9",
"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.",
"files": [
"dist",
"types",
"README.md"
],
"main": "./dist/vue-stack-grid.umd.js",
"module": "./dist/vue-stack-grid.esm.js",
"types": "./types/vue-stack-grid.d.ts",
"exports": {
".": {
"types": "./types/vue-stack-grid.d.ts",
"import": "./dist/vue-stack-grid.esm.js",
"require": "./dist/vue-stack-grid.umd.js"
},
"./package.json": "./package.json"
},
"sideEffects": false,
"type": "module",
"scripts": {
"build": "rollup -c",
"test": "jest"
},
"keywords": [
"vue3",
"stack",
"grid"
],
"peerDependencies": {
"vue": "^3.0.0"
},
"devDependencies": {
"@babel/plugin-transform-runtime": "^7.24.3",
"@babel/preset-env": "^7.24.4",
"@rollup/plugin-commonjs": "^21.0.0",
"@rollup/plugin-node-resolve": "^13.0.0",
"@vue/test-utils": "^2.4.5",
"@vue/vue3-jest": "^29.2.6",
"babel-jest": "^29.7.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"rollup": "^2.0.0",
"rollup-plugin-css-only": "^4.5.2",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-vue": "^6.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/chiribuc/vue-stack-grid.git"
},
"homepage": "https://github.com/chiribuc/vue-stack-grid#readme",
"bugs": {
"url": "https://github.com/chiribuc/vue-stack-grid/issues"
},
"funding": {
"type": "github",
"url": "https://github.com/sponsors/chiribuc"
},
"author": "Robert-Cristian Chiribuc",
"license": "MIT"
}