-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
54 lines (54 loc) · 1.38 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
{
"name": "remix-pages-context",
"type": "module",
"version": "1.0.4",
"description": "A module to make using Cloudflare Pages environment variables easier with Remix.",
"main": "./dist/index.cjs",
"exports": {
"require": "./dist/index.cjs",
"import": "./dist/index.js"
},
"files": [
"dist"
],
"scripts": {
"build": "tsup src --dts --format esm,cjs --clean --no-splitting",
"prepublishOnly": "npm run build"
},
"keywords": [
"Remix",
"Cloudflare",
"context"
],
"author": "Brandon Pittman",
"license": "MIT",
"devDependencies": {
"@cloudflare/workers-types": "^4.20230404.0",
"@remix-run/cloudflare": "^1.15.0",
"@types/node": "^18.16.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"tsup": "^6.7.0",
"typescript": "^5.0.4"
},
"types": "./dist/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/brandonpittman/remix-pages-context.git"
},
"bugs": {
"url": "https://github.com/brandonpittman/remix-pages-context/issues"
},
"homepage": "https://github.com/brandonpittman/remix-pages-context#readme",
"peerDependencies": {
"@cloudflare/workers-types": "^4.20230404.0",
"@remix-run/cloudflare": "^1.15.0",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"dependencies": {
"remix-utils": "^6.1.0",
"tiny-invariant": "^1.3.1",
"zod": "^3.21.4"
}
}