-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
107 lines (107 loc) · 2.74 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"version": "0.5.1",
"license": "MIT",
"main": "dist/react-url-modal.cjs.js",
"module": "dist/react-url-modal.esm.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"engines": {
"node": ">=10"
},
"scripts": {
"dev": "rollup -c -w",
"test": "jest",
"posttest": "npm run format",
"lint": "eslint \"src/**/*.{js,jsx,ts,tsx}\"",
"size": "size-limit",
"format": "prettier --loglevel warn --write \"**/*.{ts,tsx,css,md}\"",
"build": "rollup -c",
"test:coverage": "jest --coverage",
"deploy": "yarn add next@13.1 --peer; yarn build; cd ./example; yarn; yarn build"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^21.0.1",
"@rollup/plugin-node-resolve": "^13.1.3",
"@rollup/plugin-typescript": "^8.3.0",
"@size-limit/preset-small-lib": "^8.2.4",
"@types/jest": "^29.5.2",
"@types/react": "^17.0.38",
"@types/react-dom": "^17.0.11",
"@typescript-eslint/eslint-plugin": "^5.59.8",
"@typescript-eslint/parser": "^5.59.8",
"eslint": "^8.41.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-testing-library": "^5.11.0",
"husky": "^8.0.3",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"jest-environment-jsdom-global": "^4.0.0",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.24",
"prettier": "^2.8.8",
"rollup": "^2.66.1",
"rollup-plugin-bundle-size": "^1.0.3",
"rollup-plugin-dts": "^4.1.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-terser": "^7.0.2",
"size-limit": "^8.2.4",
"ts-jest": "^29.1.0",
"tslib": "^2.5.2",
"typescript": "^5.1.3"
},
"dependencies": {
"@radix-ui/react-dialog": "^1.0.4",
"zustand": "^4.3.8"
},
"peerDependencies": {
"next": "13.1",
"react": ">=16",
"react-dom": ">=16"
},
"peerDependenciesMeta": {
"next": {
"optional": true
}
},
"husky": {
"hooks": {
"pre-commit": "npm run lint"
}
},
"name": "react-url-modal",
"author": "Remote",
"contributors": [
"SaraVieira",
"jfranciscosousa"
],
"homepage": "https://react-url-modal.vercel.app",
"repository": "remoteoss/react-url-modal",
"prettier": {
"printWidth": 80,
"semi": true,
"singleQuote": true,
"trailingComma": "es5"
},
"size-limit": [
{
"path": "dist/react-url-modal.cjs.js",
"limit": "3 KB"
},
{
"path": "dist/react-url-modal.esm.js",
"limit": "3 KB"
},
{
"path": "dist/Modal/index.js",
"limit": "12.5 KB"
}
]
}