-
Notifications
You must be signed in to change notification settings - Fork 287
/
Copy pathpackage.json
50 lines (50 loc) · 1.27 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
{
"name": "@shopify/remix-oxygen",
"publishConfig": {
"access": "public",
"@shopify:registry": "https://registry.npmjs.org"
},
"type": "module",
"version": "2.0.9",
"license": "MIT",
"main": "dist/index.cjs",
"module": "dist/production/index.js",
"types": "dist/production/index.d.ts",
"sideEffects": false,
"scripts": {
"build": "tsup --clean",
"dev": "tsup --watch",
"prepack": "npm run build",
"typecheck": "tsc --noEmit"
},
"exports": {
".": {
"types": "./dist/production/index.d.ts",
"module": {
"development": "./dist/development/index.js",
"default": "./dist/production/index.js"
},
"require": "./dist/index.cjs",
"import": {
"development": "./dist/development/index.js",
"default": "./dist/production/index.js"
},
"default": {
"development": "./dist/development/index.js",
"default": "./dist/production/index.js"
}
},
"./package.json": "./package.json"
},
"files": [
"dist"
],
"devDependencies": {
"@remix-run/server-runtime": "^2.15.2",
"@shopify/oxygen-workers-types": "^4.1.2"
},
"peerDependencies": {
"@remix-run/server-runtime": "^2.1.0",
"@shopify/oxygen-workers-types": "^3.17.3 || ^4.1.2"
}
}