-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
80 lines (80 loc) · 1.85 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
73
74
75
76
77
78
79
80
{
"name": "react-local-toast",
"version": "2.0.2",
"license": "MIT",
"author": "OlegWock",
"main": "dist/index.js",
"module": "dist/react-local-toast.esm.js",
"typings": "dist/index.d.ts",
"files": [
"dist",
"src"
],
"scripts": {
"analyze": "size-limit --why",
"build": "patch-package && dts build",
"lint": "dts lint",
"prepare": "patch-package && dts build",
"size": "size-limit",
"start": "patch-package && dts watch --format esm",
"test": "patch-package && dts test --passWithNoTests",
"patch": "patch-package"
},
"husky": {
"hooks": {
"pre-commit": "dts lint"
}
},
"prettier": {
"printWidth": 80,
"semi": true,
"singleQuote": true,
"trailingComma": "es5"
},
"jest": {
"testEnvironment": "jsdom"
},
"peerDependencies": {
"react": ">=16"
},
"engines": {
"node": ">=18"
},
"size-limit": [
{
"path": "dist/react-local-toast.cjs.production.min.js",
"limit": "10 KB"
},
{
"path": "dist/react-local-toast.esm.js",
"limit": "10 KB"
}
],
"devDependencies": {
"@size-limit/preset-small-lib": "^11.1.2",
"@tsconfig/recommended": "^1.0.6",
"@tsconfig/vite-react": "^3.0.2",
"@types/react": "^18.3.1",
"@types/react-dom": "^18.3.0",
"@types/react-transition-group": "^4.4.10",
"@types/uuid": "^9.0.8",
"dts-cli": "^2.0.4",
"husky": "^9.0.11",
"patch-package": "^8.0.0",
"postinstall-postinstall": "^2.1.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"rollup-plugin-scss": "^4.0.0",
"rollup-plugin-visualizer": "^5.12.0",
"sass": "^1.75.0",
"size-limit": "^11.1.2",
"tslib": "^2.6.2",
"typescript": "^5.4.5"
},
"dependencies": {
"clsx": "^2.1.1",
"react-merge-refs": "^2.1.1",
"react-transition-group": "^4.4.5",
"uuid": "^9.0.1"
}
}