-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
80 lines (80 loc) · 1.94 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": "@sws2apps/react-sw-helper",
"description": "A pure react component library to handle service worker",
"version": "1.25.0",
"type": "module",
"license": "MIT",
"keywords": [
"react",
"reactjs",
"component",
"react-component",
"service-worker",
"sw"
],
"files": [
"dist",
"README.md",
"LICENSE"
],
"main": "./dist/react-sw-helper.umd.js",
"module": "./dist/react-sw-helper.es.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/react-sw-helper.es.js",
"require": "./dist/react-sw-helper.umd.js"
}
},
"publishConfig": {
"access": "public"
},
"homepage": "https://github.com/sws2apps/react-sw-helper#readme",
"author": "Scheduling Workbox System <[email protected]>",
"bugs": {
"url": "https://github.com/sws2apps/react-sw-helper/issues",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/sws2apps/react-sw-helper.git"
},
"funding": {
"type": "buymeacoffee",
"url": "https://www.buymeacoffee.com/sws2apps"
},
"scripts": {
"dev": "vite",
"build": "vite build && tsc"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"dependencies": {
"@vitejs/plugin-react": "^4.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"vite": "^5.4.6"
},
"devDependencies": {
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/exec": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@types/node": "^22.0.0",
"@types/react": "^18.3.0",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-react": "^7.34.1",
"typescript": "^5.4.5"
}
}