masua 0.11.3 → 0.11.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +12 -18
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "masua",
|
|
3
3
|
"description": "Simple masonry layout library in TypeScript.",
|
|
4
|
-
"version": "0.11.
|
|
4
|
+
"version": "0.11.4",
|
|
5
5
|
"repository": "github:tobua/masua",
|
|
6
6
|
"homepage": "https://tobua.github.io/masua",
|
|
7
7
|
"license": "MIT",
|
|
@@ -12,14 +12,14 @@
|
|
|
12
12
|
"scripts": {
|
|
13
13
|
"format": "bun biome format . --write",
|
|
14
14
|
"lint": "bun biome lint .",
|
|
15
|
-
"types": "tsc
|
|
15
|
+
"types": "tsc"
|
|
16
16
|
},
|
|
17
17
|
"devDependencies": {
|
|
18
18
|
"@biomejs/biome": "^1.7.1",
|
|
19
19
|
"@types/bun": "^1.1.0",
|
|
20
|
-
"@types/react": "^18.
|
|
20
|
+
"@types/react": "^18.3.1",
|
|
21
21
|
"typescript": "^5.4.5",
|
|
22
|
-
"zero-configuration": "^0.
|
|
22
|
+
"zero-configuration": "^0.5.5"
|
|
23
23
|
},
|
|
24
24
|
"peerDependencies": {
|
|
25
25
|
"react": ">= 18",
|
|
@@ -33,6 +33,9 @@
|
|
|
33
33
|
"trustedDependencies": [
|
|
34
34
|
"zero-configuration"
|
|
35
35
|
],
|
|
36
|
+
"workspaces": [
|
|
37
|
+
"demo"
|
|
38
|
+
],
|
|
36
39
|
"type": "module",
|
|
37
40
|
"sideEffects": false,
|
|
38
41
|
"main": "./index.ts",
|
|
@@ -64,17 +67,11 @@
|
|
|
64
67
|
"node": ">= 18"
|
|
65
68
|
},
|
|
66
69
|
"configuration": {
|
|
67
|
-
"gitignore": "
|
|
68
|
-
"vscode": "
|
|
70
|
+
"gitignore": "bundle",
|
|
71
|
+
"vscode": "biome",
|
|
69
72
|
"typescript": {
|
|
73
|
+
"extends": "plugin",
|
|
70
74
|
"compilerOptions": {
|
|
71
|
-
"strict": true,
|
|
72
|
-
"skipLibCheck": true,
|
|
73
|
-
"lib": [
|
|
74
|
-
"DOM",
|
|
75
|
-
"ES2020"
|
|
76
|
-
],
|
|
77
|
-
"module": "Preserve",
|
|
78
75
|
"jsx": "react-jsx"
|
|
79
76
|
},
|
|
80
77
|
"files": [
|
|
@@ -89,12 +86,9 @@
|
|
|
89
86
|
"nursery": {
|
|
90
87
|
"all": true
|
|
91
88
|
}
|
|
92
|
-
}
|
|
93
|
-
"ignore": [
|
|
94
|
-
"demo"
|
|
95
|
-
]
|
|
89
|
+
}
|
|
96
90
|
},
|
|
97
|
-
"
|
|
91
|
+
"files": {
|
|
98
92
|
"ignore": [
|
|
99
93
|
"demo"
|
|
100
94
|
]
|