-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·57 lines (57 loc) · 1.53 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
{
"name": "react-pin-form",
"version": "1.0.4",
"description": "🖱 React Hook for PIN codes.",
"repository": "https://github.com/qkrdmstlr3/react-pin-form",
"author": "qkrdmstlr3",
"license": "MIT",
"packageManager": "pnpm@8.15.2",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
},
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"./package.json": "./package.json"
},
"scripts": {
"preinstall": "npx only-allow pnpm",
"build": "tsup",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"devDependencies": {
"@chromatic-com/storybook": "^1.5.0",
"@storybook/addon-essentials": "^8.1.10",
"@storybook/addon-interactions": "^8.1.10",
"@storybook/addon-links": "^8.1.10",
"@storybook/addon-onboarding": "^8.1.10",
"@storybook/blocks": "^8.1.10",
"@storybook/manager-api": "^8.1.10",
"@storybook/react": "^8.1.10",
"@storybook/react-vite": "^8.1.10",
"@storybook/test": "^8.1.10",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"chromatic": "^11.5.4",
"framer-motion": "^11.2.11",
"react": "^18.1.0",
"react-dom": "^18.1.0",
"storybook": "^8.1.10",
"tsup": "^8.1.0",
"typescript": "5.1.3"
},
"peerDependencies": {
"react": "^18",
"react-dom": "^18"
},
"sideEffects": false
}