-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.45 KB
/
Copy pathpackage.json
File metadata and controls
58 lines (58 loc) · 1.45 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
{
"name": "@itsmemyk/react-mask-input",
"version": "0.1.1",
"description": "A lightweight React masked input component with static & dynamic mask support and a headless useMaskInput hook. Zero runtime dependencies.",
"license": "MIT",
"type": "module",
"sideEffects": [
"*.css"
],
"main": "./dist/react-mask-input.cjs",
"module": "./dist/react-mask-input.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/react-mask-input.js",
"require": "./dist/react-mask-input.cjs"
},
"./style": "./dist/react-mask-input.css",
"./package.json": "./package.json"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"dev": "cd demo && vite",
"build": "vite build",
"build:demo": "cd demo && vite build",
"typecheck": "tsc --noEmit",
"clean": "rimraf dist",
"prepublishOnly": "npm run clean && npm run build",
"deploy": "npm run build:demo && npx gh-pages -d demo/dist"
},
"keywords": [
"react",
"mask",
"input",
"masked-input",
"form",
"validation"
],
"peerDependencies": {
"react": "^18.0.0",
"react-dom": "^18.0.0"
},
"devDependencies": {
"@types/react": "^18.3.0",
"@types/react-dom": "^18.3.0",
"@vitejs/plugin-react": "^4.3.0",
"gh-pages": "^6.3.0",
"rimraf": "^6.0.0",
"typescript": "^5.5.0",
"vite": "^5.4.0",
"vite-plugin-dts": "^4.3.0"
}
}