-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 1.84 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
{
"name": "react-layout-masonry",
"version": "1.2.0",
"description": "Responsive masonry layout for React",
"type": "module",
"repository": "github:sibiraj-s/react-layout-masonry",
"bugs": "https://github.com/sibiraj-s/react-layout-masonry/issues",
"homepage": "https://github.com/sibiraj-s/react-layout-masonry#readme",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"author": "Sibiraj",
"license": "MIT",
"sideEffects": false,
"exports": {
".": {
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
},
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./package.json": "./package.json"
},
"types": "./dist/index.d.ts",
"files": [
"dist/"
],
"keywords": [
"react-masonry",
"react-layout-masonry"
],
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/sibiraj-s"
}
],
"scripts": {
"test": "vitest",
"test:coverage": "vitest --coverage",
"build": "tsup",
"prepare": "husky install",
"prepublishOnly": "is-ci || (npm run build && publint)"
},
"peerDependencies": {
"react": "^18 || ^19"
},
"devDependencies": {
"@commitlint/cli": "^19.5.0",
"@testing-library/react": "^16.0.1",
"@types/react": "^18.3.12",
"@vitest/coverage-v8": "^2.1.4",
"commitlint-config-non-conventional": "^1.0.1",
"eslint": "^9.14.0",
"eslint-config-pegasus": "^6.0.1",
"eslint-config-prettier": "^9.1.0",
"happy-dom": "^15.8.3",
"husky": "^9.1.6",
"is-ci": "^3.0.1",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3",
"prettier-plugin-astro": "^0.14.1",
"prop-types": "^15.8.1",
"publint": "^0.2.12",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"tsup": "^8.3.5",
"typescript": "^5.6.3",
"vitest": "^2.1.4"
}
}