-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
72 lines (72 loc) · 1.65 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
{
"name": "react-ghosta",
"version": "2.0.0",
"type": "module",
"description": "React popup alerts. Lightweight, customizable and beautiful by default.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"start": "tsup --watch",
"build": "rm -rf dist && tsup",
"push": "npm publish",
"size": "size-limit",
"prettier": "prettier src --write",
"tsc": "tsc"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs",
"default": "./dist/index.cjs"
},
"./dist/*": "./dist/*",
"./package.json": "./package.json"
},
"files": [
"dist"
],
"keywords": [
"react",
"alert",
"popup",
"modal",
"ghosta"
],
"author": "Firuzcan Hacıyev",
"repository": "https://github.com/eleviven/react-ghosta",
"bugs": "https://github.com/eleviven/react-ghosta/issues",
"homepage": "https://react-ghosta.vercel.app",
"license": "MIT",
"size-limit": [
{
"path": "dist/index.cjs",
"limit": "40 KB"
},
{
"path": "dist/index.js",
"limit": "20 KB"
}
],
"dependencies": {
"@radix-ui/react-dialog": "^1.1.2",
"class-variance-authority": "^0.7.1"
},
"peerDependencies": {
"react": ">=16",
"react-dom": ">=16"
},
"devDependencies": {
"@size-limit/preset-small-lib": "^11.0.2",
"@types/node": "^20.11.19",
"@types/react": "^18.2.56",
"@types/react-dom": "^18.2.19",
"husky": "^9.0.11",
"prettier": "^3.4.2",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"size-limit": "^11.0.2",
"tsup": "^8.0.2",
"typescript": "^5.7.2"
}
}