-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.33 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 2.33 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
{
"name": "solid-masonry",
"version": "0.0.1",
"description": "SolidJS component exposing the functionality of @desandro's Masonry grid layout library",
"author": "Manol Donev <manol.donev@gmail.com> (https://github.com/manoldonev)",
"license": "MIT",
"homepage": "https://github.com/manoldonev/solid-masonry",
"repository": {
"type": "git",
"url": "git@github.com:manoldonev/solid-masonry.git"
},
"bugs": {
"url": "https://github.com/manoldonev/solid-masonry/issues"
},
"files": [
"dist"
],
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"start": "vite --config ./dev/vite.config.ts",
"build": "tsup",
"test": "vitest --config ./dev/vite.config.ts",
"prettier": "prettier --check src",
"lint:src": "eslint 'src/**/*.{ts,tsx}' --ignore-pattern 'src/**/*.test.ts' --ignore-pattern 'src/**/*.test.tsx' --quiet",
"lint:vitest": "eslint 'src/**/*.test.{ts,tsx}' --quiet",
"lint": "pnpm run lint:src && pnpm run lint:vitest",
"lint:fix": "pnpm run lint:src --fix && pnpm run lint:vitest --fix"
},
"keywords": [
"solid",
"solidjs",
"masonry",
"layout",
"masonry-layout",
"masonry-grid-layout"
],
"peerDependencies": {
"solid-js": "^1.3.0"
},
"dependencies": {
"@solid-primitives/mutation-observer": "^1.1.0",
"masonry-layout": "^4.2.2"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.16.4",
"@types/masonry-layout": "^4.2.5",
"@types/testing-library__jest-dom": "^5.14.5",
"@typescript-eslint/eslint-plugin": "^5.30.6",
"@typescript-eslint/parser": "^5.30.6",
"eslint": "^8.20.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest-dom": "^4.0.2",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-solid": "^0.7.1",
"eslint-plugin-testing-library": "^5.5.1",
"jsdom": "^20.0.0",
"prettier": "^2.7.1",
"regenerator-runtime": "^0.13.9",
"solid-js": "^1.3.0",
"solid-testing-library": "^0.3.0",
"tsup": "^6.1.3",
"typescript": "^4.7.4",
"vite": "^3.0.1",
"vite-plugin-solid": "^2.3.0",
"vitest": "^0.18.1"
}
}