-
-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
63 lines (63 loc) · 1.45 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
{
"name": "alert",
"version": "6.0.2",
"description": "Customizable toast component for React",
"author": "Patrick Gerstacker",
"license": "MIT",
"exports": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
},
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsup src/index.ts",
"dev": "tsup src/index.ts --watch",
"dev:website": "turbo run dev --filter=website...",
"test": "jest --runInBand",
"format": "prettier --write ."
},
"keywords": [
"react",
"toast",
"notifications"
],
"homepage": "https://alert.gersti.dev",
"repository": {
"type": "git",
"url": "git+https://github.com/gxrsti/alert.git"
},
"bugs": {
"url": "https://github.com/gxrsti/alert/issues"
},
"prettier": {
"printWidth": 120,
"semi": true,
"singleQuote": true,
"trailingComma": "all",
"tabWidth": 2
},
"devDependencies": {
"@testing-library/jest-dom": "^6.4.2",
"@testing-library/react": "^14.2.0",
"@types/jest": "^29.5.11",
"@types/node": "^20.11.17",
"@types/react": "^18.2.48",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"prettier": "^3.2.4",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"ts-jest": "^29.1.2",
"tsup": "^8.0.1",
"turbo": "1.10",
"typescript": "^5.3.3"
},
"peerDependencies": {
"react": "^18.0.0",
"react-dom": "^18.0.0"
}
}