-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
71 lines (71 loc) · 1.92 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
{
"name": "svelte-bricks",
"description": "Simple masonry implementation without column balancing",
"author": "Janosh Riebesell <janosh.riebesell@gmail.com>",
"homepage": "https://janosh.github.io/svelte-bricks",
"repository": "https://github.com/janosh/svelte-bricks",
"license": "MIT",
"version": "0.2.1",
"type": "module",
"svelte": "./dist/index.js",
"bugs": "https://github.com/janosh/svelte-bricks/issues",
"scripts": {
"dev": "vite dev",
"build": "vite build",
"preview": "vite preview",
"package": "svelte-package",
"serve": "vite build && vite preview",
"check": "svelte-check --ignore dist",
"test": "vitest test",
"changelog": "npx auto-changelog --package --output changelog.md --hide-credit --commit-limit false"
},
"dependencies": {
"svelte": "^4.2.8"
},
"devDependencies": {
"@sveltejs/adapter-static": "^3.0.1",
"@sveltejs/kit": "^2.0.6",
"@sveltejs/package": "^2.2.5",
"@typescript-eslint/eslint-plugin": "^6.16.0",
"@typescript-eslint/parser": "^6.16.0",
"eslint": "^8.56.0",
"eslint-plugin-svelte": "^2.35.1",
"jsdom": "^23.0.1",
"mdsvex": "^0.11.0",
"prettier": "^3.1.1",
"prettier-plugin-svelte": "^3.1.2",
"svelte-check": "^3.6.2",
"svelte-preprocess": "^5.1.3",
"svelte-toc": "^0.5.6",
"svelte-zoo": "^0.4.9",
"svelte2tsx": "^0.6.27",
"typescript": "^5.3.3",
"vite": "^5.0.10",
"vitest": "^1.1.0"
},
"keywords": [
"svelte",
"masonry",
"pinterest-layout",
"component"
],
"publishConfig": {
"access": "public"
},
"exports": {
"./Masonry.svelte": {
"types": "./dist/Masonry.svelte.d.ts",
"svelte": "./dist/Masonry.svelte",
"default": "./dist/Masonry.svelte"
},
".": {
"types": "./dist/index.d.ts",
"svelte": "./dist/index.js",
"default": "./dist/index.js"
}
},
"types": "./dist/index.d.ts",
"files": [
"dist"
]
}