-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.23 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
{
"name": "native-react-dialog",
"version": "1.2.5",
"description": "A native React dialog.",
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"types": "./dist/esm/index.d.ts",
"scripts": {
"build": "npm run build:esm && npm run build:cjs",
"build:esm": "tsc",
"build:cjs": "tsc --module commonjs --outDir dist/cjs",
"prepare": "npm run build",
"prepublishOnly": "npm run lint",
"lint": "eslint \"{**/*,*}.{.js,ts,jsx,tsx}\""
},
"author": "Alan Xavier Benavides Benavides",
"license": "MIT",
"peerDependencies": {
"react": ">=18"
},
"files": [
"dist",
"LICENCE",
"README.md"
],
"keywords": [
"react",
"reactjs",
"dialog",
"modal",
"javacript",
"typescript",
"next",
"nextjs"
],
"dependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0",
"typescript": "^5.1.3"
},
"devDependencies": {
"@types/react": "^18.2.8",
"@typescript-eslint/eslint-plugin": "^5.59.9",
"@typescript-eslint/parser": "^5.59.9",
"eslint": "^8.42.0",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Kykal/react-dialog.git"
}
}