-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
57 lines (57 loc) · 1.42 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
{
"name": "react-pwa-push-notifications",
"keywords": [
"react",
"notifications",
"push",
"pwa"
],
"version": "1.0.0",
"description": "React hook for push notifications",
"type": "module",
"scripts": {
"start:demo": "vite",
"build": "tsc && vite build && tsc --project tsconfig.json && tsc-alias",
"lint": "eslint 'src/**/*.{js,ts,tsx}'",
"format": "prettier --write 'src/**/*.{js,ts,tsx}'",
"test": "jest"
},
"license": "ISC",
"main": "dist/index.cjs.js",
"module": "dist/index.es.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.es.js"
}
},
"sideEffects": false,
"files": [
"dist"
],
"devDependencies": {
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.0.1",
"@types/jest": "^29.5.14",
"@typescript-eslint/eslint-plugin": "^6.7.4",
"@typescript-eslint/parser": "^6.7.4",
"@vitejs/plugin-react": "^2.2.0",
"eslint": "8.22.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"prettier": "3.0.3",
"ts-jest": "^29.2.5",
"tsc-alias": "1.7.0",
"typescript": "^4.6.4",
"vite": "^3.2.0"
},
"repository": {
"type": "git",
"url": "https://github.com/u4aew/react-pwa-push-notifications"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
}
}