forked from jorisre/react-telephone
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
85 lines (85 loc) · 2.25 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
78
79
80
81
82
83
84
85
{
"name": "react-telephone",
"description": "☎️ Tiniest react input phone component (auto formating included)",
"version": "0.0.0",
"type": "module",
"source": "./src/index.tsx",
"typings": "dist/index.d.ts",
"main": "./dist/react-telephone.cjs",
"module": "./dist/react-telephone.module.js",
"unpkg": "./dist/foo.umd.js",
"exports": {
"require": "./dist/react-telephone.cjs",
"default": "./dist/react-telephone.modern.js"
},
"scripts": {
"dev": "microbundle watch",
"build": "microbundle --jsx 'React.createElement' --jsxImportSource react --globals react/jsx-runtime=jsx",
"test": "vitest",
"prepare": "husky install",
"lint": "eslint --ignore-path .gitignore --ext .ts,.tsx ."
},
"license": "MIT",
"homepage": "https://github.com/jorisre/react-telephone#readme",
"repository": {
"type": "git",
"url": "https://github.com/jorisre/react-telephone.git"
},
"bugs": {
"url": "https://github.com/jorisre/react-telephone/issues"
},
"keywords": [
"phone",
"phone number",
"telephone",
"international",
"tel",
"number"
],
"sideEffects": false,
"files": [
"dist",
"src"
],
"engines": {
"node": ">=10"
},
"author": {
"name": "Joris",
"email": "[email protected]",
"url": "https://joris.re"
},
"peerDependencies": {
"react": "^16 || ^17 || ^18",
"react-dom": "^16 || ^17 || ^18"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.16.2",
"@testing-library/react": "^13.0.0",
"@testing-library/user-event": "^14.0.4",
"@types/node": "^17.0.21",
"@types/react": "^18.0.0",
"@types/react-dom": "^18.0.0",
"@typescript-eslint/eslint-plugin": "^5.15.0",
"@typescript-eslint/parser": "^5.15.0",
"@vitejs/plugin-react": "^1.0.7",
"c8": "^7.11.0",
"eslint": "^8.10.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-react": "^7.29.3",
"husky": ">=6",
"jsdom": "^19.0.0",
"lint-staged": ">=12.3.7",
"microbundle": "^0.14.2",
"prettier": "2.6.2",
"react": "^17.0.0",
"react-dom": "^17.0.0",
"typescript": "^4.5.4",
"vite": "^2.9.1",
"vitest": "^0.9.0"
},
"lint-staged": {
"*.js": "yarn lint --cache --fix",
"*.{js,css,md}": "prettier --write"
}
}