-
Notifications
You must be signed in to change notification settings - Fork 25
/
package.json
74 lines (74 loc) · 1.71 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
{
"name": "@yeger/vue2-masonry-wall",
"type": "module",
"version": "5.0.17",
"description": "Responsive masonry layout with SSR support and zero dependencies for Vue 2.",
"author": {
"name": "Jan Müller",
"url": "https://github.com/DerYeger"
},
"license": "MIT",
"homepage": "https://vue2-masonry-wall.yeger.eu",
"repository": {
"type": "git",
"url": "git+https://github.com/DerYeger/yeger.git",
"directory": "packages/vue2-masonry-wall"
},
"bugs": {
"url": "https://github.com/DerYeger/yeger/issues"
},
"keywords": [
"vue",
"plugin",
"component",
"masonry",
"wall"
],
"sideEffects": false,
"exports": {
".": {
"import": {
"types": "./dist/types/index.d.mts",
"default": "./dist/index.mjs"
}
}
},
"types": "dist/types/index.d.mts",
"files": [
"dist/*",
"src/**/*.vue"
],
"scripts": {
"build": "vite build",
"bundlesize": "bundlesize",
"check:publish": "publint run --strict",
"check:tsc": "tsc",
"dev": "vite build --watch",
"lint": "yeger-lint",
"test": "vitest"
},
"peerDependencies": {
"vue": "^2.7.0"
},
"dependencies": {
"@yeger/vue-masonry-wall-core": "workspace:*"
},
"devDependencies": {
"@types/resize-observer-browser": "0.1.11",
"@vitejs/plugin-vue2": "2.3.3",
"@vue/test-utils": "1.3.6",
"@yeger/tsconfig": "workspace:*",
"babel-core": "7.0.0-bridge.0",
"bundlesize2": "0.0.31",
"flush-promises": "1.0.2",
"jsdom": "25.0.1",
"typescript": "5.7.2",
"vite": "6.0.7",
"vite-plugin-lib": "workspace:*",
"vue": "2.7.16",
"vue-template-compiler": "2.7.16"
},
"publishConfig": {
"access": "public"
}
}