-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·75 lines (75 loc) · 1.92 KB
/
Copy pathpackage.json
File metadata and controls
executable file
·75 lines (75 loc) · 1.92 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
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
{
"name": "react-simple-notify",
"private": false,
"version": "1.0.8",
"author": "GruFFix@yandex.ru",
"homepage": "https://rsn.gruffix.ru",
"type": "module",
"main": "./dist/index.umd.js",
"module": "./dist/index.es.js",
"types": "./dist/index.d.ts",
"keywords": [
"react",
"react component",
"react notification",
"notification",
"notify",
"toast",
"react toast"
],
"repository": {
"type": "git",
"url": "https://github.com/GruFFix/react-simple-notify.git"
},
"license": "MIT",
"sideEffects": [
"**/*.css"
],
"files": [
"dist"
],
"publishConfig": {
"@GruFFix:registry": "https://npm.pkg.github.com"
},
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"preview": "vite preview",
"test": "vitest",
"test:ui": "vitest --ui",
"test:run": "vitest run",
"test:coverage": "vitest run --coverage"
},
"peerDependencies": {
"react": ">=18.0.0",
"react-dom": ">=18.0.0"
},
"devDependencies": {
"react": "^19.2.0",
"react-dom": "^19.2.0",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.0",
"@types/node": "^20.11.22",
"@types/prismjs": "^1.26.3",
"@types/react": "^19.2.2",
"@types/react-dom": "^19.2.2",
"@typescript-eslint/eslint-plugin": "^7.0.2",
"@typescript-eslint/parser": "^7.0.2",
"@vitejs/plugin-react": "^4.2.1",
"@vitest/coverage-v8": "^4.0.8",
"@vitest/ui": "^4.0.8",
"eslint": "^8.56.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.5",
"happy-dom": "^20.0.10",
"jsdom": "^27.1.0",
"prettier": "^3.1.1",
"typescript": "^5.2.2",
"vite": "^5.1.4",
"vite-plugin-dts": "^3.7.3",
"vite-plugin-lib-inject-css": "^2.0.0",
"vitest": "^4.0.8"
}
}