-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
73 lines (73 loc) · 2.03 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
72
73
{
"name": "@code-forge/react-input-mask",
"description": "React input mask used to mask input fields on the fly.",
"author": "Alem Tuzlak",
"version": "1.0.7",
"license": "MIT",
"keywords": [
"react",
"input",
"mask",
"hook",
"input-mask",
"react-input-mask",
"react-hook",
"react-input-mask-hook"
],
"private": false,
"type": "module",
"main": "./dist/index.umd.cjs",
"module": "./dist/index.js",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.umd.cjs"
}
},
"typings": "./dist/index.d.ts",
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/Code-Forge-Net/react-input-mask.git"
},
"bugs": {
"url": "https://github.com/Code-Forge-Net/react-input-mask/issues"
},
"homepage": "https://github.com/Code-Forge-Net/react-input-mask#readme",
"readme": "https://github.com/Code-Forge-Net/react-input-mask#readme",
"scripts": {
"prepublish": "npm run build",
"dev": "vite --config ./vite.dev.config.ts",
"build": "vite build",
"lint": "eslint src --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"preview": "vite preview",
"test": "vitest run --coverage"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0 || ^18.0.0",
"react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0"
},
"devDependencies": {
"@testing-library/react": "^14.0.0",
"@types/node": "^18.16.0",
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.11",
"@typescript-eslint/eslint-plugin": "^5.57.1",
"@typescript-eslint/parser": "^5.57.1",
"@vitejs/plugin-react": "^4.0.0-beta.0",
"@vitest/coverage-c8": "^0.30.1",
"eslint": "^8.38.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.3.4",
"happy-dom": "^9.9.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hook-form": "^7.43.9",
"rollup-plugin-typescript2": "^0.34.1",
"typescript": "^5.0.4",
"vite": "^4.3.0",
"vitest": "^0.30.1"
}
}