-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
37 lines (37 loc) · 1017 Bytes
/
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
{
"name": "@fastly/remix-server-adapter",
"version": "4.0.1",
"license": "MIT",
"description": "Remix Adapter for Fastly Compute",
"types": "./build/src/index.d.ts",
"main": "./build/src/index.js",
"exports": {
".": "./build/src/index.js"
},
"dependencies": {
"@fastly/compute-js-static-publish": "^6.0.0",
"@fastly/js-compute": "^3.0.0",
"@fastly/remix-server-runtime": "^4.0.0"
},
"scripts": {
"prepack": "npm run clean && npm run compile",
"compile": "tsc --build tsconfig.json",
"clean": "rm -rf build"
},
"homepage": "https://github.com/fastly/remix-compute-js/tree/main/packages/remix-server-adapter",
"repository": {
"type": "git",
"url": "https://github.com/fastly/remix-compute-js.git",
"directory": "packages/react-server-adapter"
},
"files": [
"build/src/**/*.js",
"build/src/**/*.js.map",
"build/src/**/*.d.ts",
"build/src/**/*.d.ts.map",
"resources/**/*",
"LICENSE",
"README.md",
"SECURITY.md"
]
}