-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
65 lines (65 loc) · 1.77 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
{
"name": "react-headless-passcode",
"version": "1.0.0",
"description": "A headless UI for building easy to use passcode component",
"keywords": [
"passcode",
"headless-ui",
"react"
],
"maintainers": [
{
"name": "Keyur Paralkar",
"email": "[email protected]"
}
],
"homepage": "https://github.com/keyurparalkar/react-headless-passcode",
"repository": {
"url": "https://github.com/keyurparalkar/react-headless-passcode",
"type": "git"
},
"bugs": {
"url": "https://github.com/keyurparalkar/react-headless-passcode/issues"
},
"main": "build/index.js",
"module": "build/index.js",
"types": "build/index.d.ts",
"files": [
"build"
],
"scripts": {
"build": "rollup -c",
"test": "jest",
"release": "standard-version",
"release:minor": "standard-version --release-as minor",
"release:patch": "standard-version --release-as patch",
"release:major": "standard-version --release-as major"
},
"sideEffects": false,
"author": "Keyur Paralkar",
"license": "MIT",
"devDependencies": {
"@rollup/plugin-node-resolve": "^13.3.0",
"@testing-library/jest-dom": "^6.1.3",
"@testing-library/react": "^14.0.0",
"@testing-library/user-event": "^14.5.1",
"@types/jest": "^29.5.5",
"@types/react": "^18.0.12",
"@types/react-dom": "^18.0.5",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"react": "^18.1.0",
"react-dom": "^18.1.0",
"rollup": "^2.75.6",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.31.2",
"standard-version": "^9.5.0",
"ts-jest": "^29.1.1",
"typescript": "^5.2.2"
},
"peerDependencies": {
"react": ">=16.8.0",
"react-dom": ">=16.8.0"
}
}