-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.49 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
{
"name": "remix-toast-notifications",
"version": "1.0.2",
"description": "Lightweight headless toast notifications in remix",
"author": {
"name": "Philipp Hermes",
"url": "https://github.com/philipphermes"
},
"keywords": [
"remix",
"react",
"toast"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/philipphermes/remix-toast-notifications.git"
},
"main": "build/index.js",
"types": "build/index.d.ts",
"exports": {
".": "./build/index.js",
"./package.json": "./package.json"
},
"files": [
"build",
"src",
"package.json",
"README.md"
],
"scripts": {
"build": "tsc",
"typecheck": "tsc --noEmit",
"lint": "eslint --ignore-path .gitignore --cache --cache-location ./node_modules/.cache/eslint ."
},
"devDependencies": {
"@remix-run/node": "^2.15.1",
"@remix-run/react": "^2.15.1",
"@total-typescript/tsconfig": "^1.0.4",
"@types/react": "^19.0.1",
"@types/react-dom": "^19.0.2",
"react": "^18.0.0",
"typescript": "^5.7.2",
"vitest": "^2.1.8",
"eslint": "^8.38.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^5.1.0",
"@typescript-eslint/eslint-plugin": "^7.0.0",
"@typescript-eslint/parser": "^6.7.4"
},
"engines": {
"node": ">=20.0.0"
},
"sideEffects": false,
"type": "module"
}