-
-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathpackage.json
90 lines (90 loc) · 2.49 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
86
87
88
89
90
{
"name": "react-pin-field",
"description": "React component for entering PIN codes",
"author": "soywod <[email protected]>",
"license": "MIT",
"version": "4.0.2",
"keywords": [
"react",
"component",
"pin",
"code",
"input",
"field"
],
"homepage": "https://github.com/soywod/react-pin-field",
"repository": {
"type": "git",
"url": "git+https://github.com/soywod/react-pin-field.git"
},
"bugs": {
"url": "https://github.com/soywod/react-pin-field/issues",
"email": "[email protected]"
},
"type": "module",
"files": [
"dist"
],
"types": "./dist/index.d.ts",
"module": "./dist/react-pin-field.js",
"main": "./dist/react-pin-field.umd.cjs",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/react-pin-field.js",
"require": "./dist/react-pin-field.umd.cjs"
}
},
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/preset-env": "^7.26.0",
"@babel/preset-react": "^7.26.3",
"@babel/preset-typescript": "^7.26.0",
"@cypress/webpack-preprocessor": "^6.0.2",
"@size-limit/preset-small-lib": "^11.1.6",
"@storybook/addon-essentials": "^8.4.7",
"@storybook/addon-interactions": "^8.4.7",
"@storybook/blocks": "^8.4.7",
"@storybook/react": "^8.4.7",
"@storybook/react-vite": "^8.4.7",
"@storybook/test": "^8.4.7",
"@testing-library/cypress": "^10.0.2",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.1.0",
"@types/jest": "^29.5.14",
"@types/lodash": "^4.17.13",
"@types/node": "^22.10.5",
"@types/react": "^19.0.2",
"@types/react-dom": "^19.0.2",
"babel-jest": "^29.7.0",
"babel-loader": "^9.2.1",
"classnames": "^2.5.1",
"concurrently": "^9.1.2",
"cypress": "=13.13.2",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"lodash": "^4.17.21",
"prettier": "^3.4.2",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"sass": "^1.83.0",
"size-limit": "^11.1.6",
"storybook": "^8.4.7",
"typescript": "^5.7.2",
"vite": "^6.0.7",
"vite-plugin-dts": "^4.4.0",
"webpack": "^5.97.1"
},
"peerDependencies": {
"react": "^16.8 || ^17 || ^18 || ^19"
},
"scripts": {
"start": "storybook dev",
"test:unit": "jest",
"test:e2e": "cypress run",
"test": "concurrently 'npm run test:unit' 'npm run test:e2e'",
"build": "vite build",
"storybook:build": "storybook build -o dist"
}
}