-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
56 lines (56 loc) · 1.47 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
{
"name": "react-headless-phone-input",
"version": "3.0.0",
"description": "A headless phone number input component",
"type": "module",
"main": "dist/index.umd.cjs",
"module": "dist/index.js",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.umd.cjs"
},
"./lazy": {
"import": "./dist/lazy.js"
}
},
"sideEffects": false,
"scripts": {
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"peerDependencies": {
"libphonenumber-js": "^1.10.38",
"react": "^18"
},
"devDependencies": {
"@storybook/addon-essentials": "^7.1.1",
"@storybook/addon-interactions": "^7.1.1",
"@storybook/addon-links": "^7.1.1",
"@storybook/addon-onboarding": "^1.0.8",
"@storybook/blocks": "^7.1.1",
"@storybook/react": "^7.1.1",
"@storybook/react-vite": "^7.1.1",
"@storybook/testing-library": "^0.2.0",
"libphonenumber-js": "^1.10.38",
"react": "^18",
"react-dom": "^18",
"storybook": "^7.1.1",
"tiny-flag-react": "^2",
"typescript": "*",
"vite": "^4.4.7"
},
"author": "Ben Aubin (benaubin.com)",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/benaubin/react-headless-phone-input.git"
},
"bugs": {
"url": "https://github.com/benaubin/tiny-flag-react/issues"
},
"homepage": "https://github.com/benaubin/tiny-flag-react#readme",
"dependencies": {
"vite-plugin-dts": "^3.4.0"
}
}