-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
77 lines (77 loc) · 2.3 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
74
75
76
77
{
"name": "use-mask-input",
"version": "3.4.2",
"description": "A react Hook for build elegant input masks. Compatible with React Hook Form",
"author": "Eduardo Borges<[email protected]>",
"type": "module",
"repository": "https://github.com/eduardoborges/use-mask-input",
"source": "./src/index.tsx",
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
"import": "./dist/index.js",
"require": "./dist/index.cjs",
"types": "./dist/index.d.ts"
},
"engines": {
"node": ">=16",
"npm": ">=7"
},
"scripts": {
"build": "./scripts.sh build",
"dev": "./scripts.sh dev",
"lint": "./scripts.sh lint",
"test": "./scripts.sh test",
"prepare": "./scripts.sh prepare"
},
"files": [
"dist",
"src",
"README.md",
"CHANGELOG.md"
],
"peerDependencies": {
"react": ">=16.4 || 17 || 18 || 20",
"react-dom": ">=16.4 || 17 || 18 || 20"
},
"devDependencies": {
"inputmask": "5.0.10-beta.11",
"@rollup/plugin-commonjs": "28.0.1",
"@rollup/plugin-node-resolve": "15.3.0",
"@semantic-release/changelog": "6.0.3",
"@semantic-release/commit-analyzer": "13.0.0",
"@semantic-release/git": "10.0.1",
"@semantic-release/github": "11.0.1",
"@semantic-release/npm": "12.0.1",
"@semantic-release/release-notes-generator": "14.0.1",
"@types/inputmask": "5.0.7",
"@types/node": "22",
"@types/react": ">=16.4 || 17 || 18",
"@types/react-dom": ">=16.4 || 17 || 18",
"@typescript-eslint/eslint-plugin": "6.8.0",
"@typescript-eslint/parser": "6.8.0",
"@vitest/coverage-v8": "2.1.5",
"esbuild": "0.24.0",
"eslint": "8.51.0",
"eslint-config-airbnb": "19.0.4",
"eslint-config-airbnb-typescript": "17.1.0",
"eslint-plugin-import": "2.28.1",
"eslint-plugin-jsx-a11y": "6.7.1",
"eslint-plugin-react": "7.33.2",
"eslint-plugin-react-hooks": "4.6.0",
"patch-package": "^8.0.0",
"react-hook-form": "7.53.2",
"read-pkg": "9.0.1",
"rollup": "4.27.3",
"rollup-plugin-dts": "6.1.1",
"rollup-plugin-esbuild": "6.1.1",
"semantic-release": "24.2.0",
"simple-git-hooks": "2.11.1",
"typescript": "5.1",
"vitest": "2.1.5"
},
"simple-git-hooks": {
"pre-commit": "npm run lint && npm run test && npm run build"
}
}