forked from emilkowalski/sonner
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.57 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
{
"name": "sonner",
"version": "1.7.3",
"description": "An opinionated toast component for SolidJS.",
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"dev:website": "turbo run dev --filter=website...",
"dev:test": "turbo run dev --filter=test...",
"format": "prettier --write .",
"test": "playwright test",
"lint": "eslint --cache src *.ts"
},
"keywords": [
"solidjs",
"notifications",
"toast",
"snackbar",
"message"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/microdev1/sonner-solidjs.git"
},
"bugs": {
"url": "https://github.com/microdev1/sonner-solidjs/issues"
},
"devDependencies": {
"@types/eslint__js": "^8.42.3",
"@types/node": "^22.12.0",
"eslint": "^9.19.0",
"eslint-plugin-solid": "^0.14.5",
"prettier": "^3.4.2",
"solid-js": "^1.9.4",
"tsup": "^8.3.6",
"tsup-preset-solid": "^2.2.0",
"typescript": "^5.7.3",
"typescript-eslint": "^8.22.0"
},
"peerDependencies": {
"solid-js": "^1.9.4"
},
"packageManager": "[email protected]",
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"browser": {},
"exports": {
"solid": {
"development": "./dist/dev.jsx",
"import": "./dist/index.jsx"
},
"development": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/dev.js"
}
},
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"typesVersions": {},
"type": "module"
}