-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
68 lines (68 loc) · 1.93 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
{
"name": "@notificationapi/react",
"private": false,
"version": "0.0.37",
"type": "module",
"browserslist": [
"last 2 versions",
"last 2 ChromeAndroid versions",
"last 2 FirefoxAndroid versions",
"last 2 Safari versions",
"last 2 iOS versions",
"not IE >= 1",
"not bb >=1",
"not IE_Mob >=1",
"not op_mini all"
],
"scripts": {
"dev": "vite",
"build": "tsc --p ./tsconfig.build.json && vite build",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"format": "prettier --write \"{src,lib}/**/*.{ts,tsx,js,jsx,json,css,md,html}\"",
"prettier-check": "prettier --check \"{src,lib}/**/*.{ts,tsx,js,jsx,json,css,md,html}\"",
"preview": "vite preview",
"prepublishOnly": "npm run build"
},
"peerDependencies": {
"react": "^17.0.2 || ^18.0.0 || ^19.0.0",
"react-dom": "^17.0.2 || ^18.0.0 || ^19.0.0"
},
"devDependencies": {
"@ant-design/icons": "^5.5.2",
"@faker-js/faker": "^9.2.0",
"@types/node": "^20.12.7",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"@typescript-eslint/eslint-plugin": "^7.2.0",
"@typescript-eslint/parser": "^7.2.0",
"@vitejs/plugin-react": "^4.2.1",
"eslint": "^8.57.0",
"eslint-plugin-compat": "^6.0.1",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.6",
"faker-js": "^1.0.0",
"glob": "^10.4.1",
"prettier": "^3.3.3",
"typescript": "^5.2.2",
"vite": "^5.2.0",
"vite-plugin-dts": "^3.9.1",
"vite-plugin-lib-inject-css": "^2.1.1"
},
"main": "dist/main.js",
"types": "dist/main.d.ts",
"files": [
"dist"
],
"sideEffects": [
"**/*.css"
],
"dependencies": {
"@notificationapi/core": "^0.0.12",
"antd": "^5.22.5",
"javascript-time-ago": "^2.5.10",
"liquidjs": "^10.14.0",
"rc-virtual-list": "^3.11.5",
"react-time-ago": "^7.3.3",
"styled-components": "^6.1.9"
}
}