minimal-shared 0.0.3 → 0.0.5
Sign up to get free protection for your applications and to get access to all the features.
- package/LICENSE +21 -0
- package/package.json +17 -17
package/LICENSE
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
MIT License
|
2
|
+
|
3
|
+
Copyright (c) 2024 Minimal UI ([https://minimals.cc/](https://minimals.cc/))
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
7
|
+
in the Software without restriction, including without limitation the rights
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
10
|
+
furnished to do so, subject to the following conditions:
|
11
|
+
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
13
|
+
copies or substantial portions of the Software.
|
14
|
+
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
21
|
+
SOFTWARE.
|
package/package.json
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
{
|
2
2
|
"name": "minimal-shared",
|
3
3
|
"author": "Minimals",
|
4
|
-
"version": "0.0.
|
4
|
+
"version": "0.0.5",
|
5
5
|
"description": "Shared hooks and utils used by Mnimal UI and Zone UI.",
|
6
6
|
"keywords": [
|
7
7
|
"typescript",
|
@@ -52,18 +52,6 @@
|
|
52
52
|
"default": "./dist/utils/*/index.js"
|
53
53
|
}
|
54
54
|
},
|
55
|
-
"scripts": {
|
56
|
-
"dev": "NODE_OPTIONS='--max-old-space-size=16384' tsup --watch",
|
57
|
-
"build": "pnpm test && NODE_OPTIONS='--max-old-space-size=16384' tsup",
|
58
|
-
"test": "vitest run",
|
59
|
-
"test:watch": "vitest",
|
60
|
-
"lint": "eslint \"**/*.{js,jsx,ts,tsx}\"",
|
61
|
-
"lint:fix": "eslint --fix \"**/*.{js,jsx,ts,tsx}\"",
|
62
|
-
"lint:print": "npx eslint --print-config eslint.config.mjs > eslint-current-config.json",
|
63
|
-
"clean": "rm -rf node_modules .turbo .next out dist build",
|
64
|
-
"re:build": "pnpm clean && pnpm install && pnpm build",
|
65
|
-
"tsc:print": "npx tsc --showConfig"
|
66
|
-
},
|
67
55
|
"dependencies": {
|
68
56
|
"es-toolkit": "^1.26.1"
|
69
57
|
},
|
@@ -77,15 +65,27 @@
|
|
77
65
|
"fast-glob": "^3.3.2",
|
78
66
|
"fs-extra": "^11.2.0",
|
79
67
|
"glob": "^11.0.0",
|
80
|
-
"internal-eslint-config": "workspace:*",
|
81
|
-
"internal-ts-config": "workspace:*",
|
82
68
|
"jsdom": "^25.0.1",
|
83
69
|
"react": "^18.3.1",
|
84
70
|
"tsup": "^8.3.5",
|
85
71
|
"typescript": "^5.5.4",
|
86
|
-
"vitest": "^2.1.4"
|
72
|
+
"vitest": "^2.1.4",
|
73
|
+
"internal-eslint-config": "1.0.0",
|
74
|
+
"internal-ts-config": "1.0.0"
|
87
75
|
},
|
88
76
|
"peerDependencies": {
|
89
77
|
"react": "^17 || ^18"
|
78
|
+
},
|
79
|
+
"scripts": {
|
80
|
+
"dev": "NODE_OPTIONS='--max-old-space-size=16384' tsup --watch",
|
81
|
+
"build": "pnpm test && NODE_OPTIONS='--max-old-space-size=16384' tsup",
|
82
|
+
"test": "vitest run",
|
83
|
+
"test:watch": "vitest",
|
84
|
+
"lint": "eslint \"**/*.{js,jsx,ts,tsx}\"",
|
85
|
+
"lint:fix": "eslint --fix \"**/*.{js,jsx,ts,tsx}\"",
|
86
|
+
"lint:print": "npx eslint --print-config eslint.config.mjs > eslint-current-config.json",
|
87
|
+
"clean": "rm -rf node_modules .turbo .next out dist build",
|
88
|
+
"re:build": "pnpm clean && pnpm install && pnpm build",
|
89
|
+
"tsc:print": "npx tsc --showConfig"
|
90
90
|
}
|
91
|
-
}
|
91
|
+
}
|