@tounsoo/input-number-mask 1.0.7 → 1.0.8
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/README.md +1 -0
- package/package.json +15 -17
package/README.md
CHANGED
package/package.json
CHANGED
|
@@ -1,8 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tounsoo/input-number-mask",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.8",
|
|
4
4
|
"description": "A lightweight, dependency-free React hook for masking input values. Perfect for phone numbers, dates, credit cards, and more.",
|
|
5
|
-
"packageManager": "pnpm@10.23.0",
|
|
6
5
|
"type": "module",
|
|
7
6
|
"main": "./dist/index.cjs",
|
|
8
7
|
"module": "./dist/index.mjs",
|
|
@@ -24,21 +23,6 @@
|
|
|
24
23
|
"README.md",
|
|
25
24
|
"LICENSE"
|
|
26
25
|
],
|
|
27
|
-
"scripts": {
|
|
28
|
-
"dev": "vite",
|
|
29
|
-
"build": "tsc -b && vite build",
|
|
30
|
-
"build:lib": "tsc -p tsconfig.lib.json && vite build --config vite.config.lib.ts",
|
|
31
|
-
"lint": "eslint .",
|
|
32
|
-
"preview": "vite preview",
|
|
33
|
-
"storybook": "storybook dev -p 6006",
|
|
34
|
-
"build-storybook": "storybook build",
|
|
35
|
-
"test": "vitest run",
|
|
36
|
-
"test:ci": "vitest run --config vitest.config.ci.ts",
|
|
37
|
-
"prepublishOnly": "pnpm build:lib",
|
|
38
|
-
"changeset": "changeset",
|
|
39
|
-
"version": "changeset version",
|
|
40
|
-
"release": "pnpm build:lib && npm publish --access public --provenance && git push --follow-tags origin main"
|
|
41
|
-
},
|
|
42
26
|
"peerDependencies": {
|
|
43
27
|
"react": "^18.0.0 || ^19.0.0",
|
|
44
28
|
"react-dom": "^18.0.0 || ^19.0.0"
|
|
@@ -101,5 +85,19 @@
|
|
|
101
85
|
"publishConfig": {
|
|
102
86
|
"access": "public",
|
|
103
87
|
"provenance": true
|
|
88
|
+
},
|
|
89
|
+
"scripts": {
|
|
90
|
+
"dev": "vite",
|
|
91
|
+
"build": "tsc -b && vite build",
|
|
92
|
+
"build:lib": "tsc -p tsconfig.lib.json && vite build --config vite.config.lib.ts",
|
|
93
|
+
"lint": "eslint .",
|
|
94
|
+
"preview": "vite preview",
|
|
95
|
+
"storybook": "storybook dev -p 6006",
|
|
96
|
+
"build-storybook": "storybook build",
|
|
97
|
+
"test": "vitest run",
|
|
98
|
+
"test:ci": "vitest run --config vitest.config.ci.ts",
|
|
99
|
+
"changeset": "changeset",
|
|
100
|
+
"version": "changeset version",
|
|
101
|
+
"release": "pnpm build:lib && changeset publish"
|
|
104
102
|
}
|
|
105
103
|
}
|