This repository has been archived by the owner on Sep 23, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
66 lines (66 loc) · 1.68 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
{
"name": "@remix-pwa/sw",
"version": "1.1.6",
"author": "Abdur-Rahman Fashola",
"description": "A Remix PWA package to help you build anything Service Workers in Remix. Complete with extensibility and a little zing 🚀",
"private": false,
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/remix-pwa/sw"
},
"homepage": "https://remix-pwa-docs.vercel.app/sw",
"main": "./lib/index.js",
"bin": "./exec.js",
"types": "./types/index.d.ts",
"files": [
"lib",
"types",
"./exec.js"
],
"scripts": {
"build": "npm run clean && npm run copy && tsc",
"build:browser": "tsc -p tsconfig.json --outDir ./browser --module ES2022",
"build:lib": "tsc -p tsconfig.json --outDir ./lib --module CommonJS",
"clean": "rimraf lib types",
"copy": "",
"format": "prettier --write ./src",
"prepublishOnly": "npm run build"
},
"peerDependencies": {
"@remix-run/dev": "^1.15.0",
"@remix-run/react": "^1.15.0",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@remix-run/dev": "^1.16.1",
"@remix-run/react": "^1.16.1",
"@types/fs-extra": "^11.0.1",
"@types/react": "^18.2.7",
"eslint": "^8.41.0",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"fs-extra": "^11.1.1",
"npm-run-all": "^4.1.5",
"prettier": "^2.8.7",
"rimraf": "^5.0.1",
"typescript": "^5.0.4",
"workbox-core": "^7.0.0"
},
"publishConfig": {
"access": "public"
},
"keywords": [
"remix",
"remix-run",
"pwa",
"remix-pwa",
"@remix-pwa",
"service worker",
"workbox"
],
"dependencies": {
"esbuild": "^0.17.19"
}
}