-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 2.55 KB
/
package.json
File metadata and controls
93 lines (93 loc) · 2.55 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
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
{
"name": "@masonry-grid/preact",
"type": "module",
"version": "1.1.1",
"description": "A fast, lightweight, and responsive masonry grid layout library for Preact.",
"author": "dangreen",
"license": "MIT",
"homepage": "https://masonry-grid.js.org",
"funding": "https://ko-fi.com/dangreen",
"repository": {
"type": "git",
"url": "https://github.com/TrigenSoftware/masonry-grid.git",
"directory": "packages/preact"
},
"bugs": {
"url": "https://github.com/TrigenSoftware/masonry-grid/issues"
},
"keywords": [
"masonry",
"grid",
"layout",
"masonry-grid",
"responsive",
"fast",
"lightweight",
"preact"
],
"engines": {
"node": ">=16"
},
"sideEffects": false,
"exports": {
"./package.json": "./package.json",
".": "./src/index.tsx"
},
"publishConfig": {
"exports": {
"./package.json": "./package.json",
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"directory": "package",
"linkDirectory": false
},
"files": [
"dist"
],
"scripts": {
"clear:package": "del ./package",
"clear:dist": "del ./dist",
"clear": "del ./package ./dist ./coverage",
"prepublishOnly": "run build clear:package clean-publish",
"postpublish": "pnpm clear:package",
"emitDeclarations": "tsc -p ./tsconfig.build.json --emitDeclarationOnly",
"build:dist": "run -p emitDeclarations [ vite build ]",
"build": "run clear:dist build:dist",
"build:storybook": "storybook build",
"lint": "eslint --flag v10_config_lookup_from_file",
"test:install-deps": "playwright install chromium",
"test:unit": "vitest run --coverage",
"test:unit:watch": "vitest watch",
"test:size": "size-limit",
"test:types": "tsc --noEmit",
"test": "run -p lint test:unit test:types",
"storybook": "storybook dev -p 6006 --no-open"
},
"peerDependencies": {
"preact": "^10.0.0"
},
"dependencies": {
"@masonry-grid/vanilla": "workspace:^"
},
"devDependencies": {
"@preact/preset-vite": "^2.9.3",
"@size-limit/preset-small-lib": "^11.1.2",
"@storybook/preact": "^9.1.16",
"@storybook/preact-vite": "^9.1.16",
"@testing-library/dom": "^10.0.0",
"@testing-library/jest-dom": "^6.5.0",
"@testing-library/preact": "^3.2.4",
"@vitest/browser": "^3.2.4",
"@vitest/coverage-v8": "^3.0.0",
"playwright": "^1.56.0",
"preact": "^10.26.1",
"size-limit": "^11.1.2",
"storybook": "^9.1.16",
"typescript": "^5.3.3",
"vite": "^7.1.11",
"vitest": "^3.0.0"
}
}