-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.11 KB
/
Copy pathpackage.json
File metadata and controls
41 lines (41 loc) · 1.11 KB
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
{
"name": "syntaxility-notifications-ui-library",
"version": "1.0.4",
"description": "Production-ready notification UI system for NextJS & React",
"main": "dist/index.cjs",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
}
},
"keywords": ["react", "nextjs", "notifications", "ui", "components", "typescript", "tailwind"],
"author": "Tariq Mehmood",
"license": "MIT",
"scripts": {
"build": "tsup src/index.ts --format cjs,esm --dts --clean",
"prepublishOnly": "npm run build"
},
"files": ["dist", "README.md"],
"peerDependencies": {
"react": "^18 || ^19",
"react-dom": "^18 || ^19",
"next": ">=13",
"@heroicons/react": "^2.2.0",
"framer-motion": "^12.0.0"
},
"devDependencies": {
"@tailwindcss/postcss": "^4",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"eslint": "^9",
"eslint-config-next": "16.0.8",
"tailwindcss": "^4",
"typescript": "^5",
"tsup": "^8.5.1"
}
}