This repository has been archived by the owner on Jan 10, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 225
/
Copy pathpackage.json
122 lines (122 loc) · 2.83 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
{
"name": "@shopify/web-worker",
"version": "6.4.0",
"license": "MIT",
"description": "Tools for making web workers fun to use",
"main": "index.js",
"module": "index.mjs",
"esnext": "index.esnext",
"types": "./build/ts/index.d.ts",
"typesVersions": {
"*": {
"babel": [
"./build/ts/babel-plugin.d.ts"
],
"webpack": [
"./build/ts/webpack-parts/index.d.ts"
],
"webpack-loader": [
"./build/ts/webpack-parts/loader.d.ts"
],
"worker": [
"./build/ts/worker.d.ts"
]
}
},
"exports": {
"./babel": {
"types": "./build/ts/babel-plugin.d.ts",
"default": "./babel.js"
},
"./webpack": {
"types": "./build/ts/webpack-parts/index.d.ts",
"default": "./webpack.js"
},
"./webpack-loader": {
"types": "./build/ts/webpack-parts/loader.d.ts",
"default": "./webpack-loader.js"
},
"./worker": {
"types": "./build/ts/worker.d.ts",
"esnext": "./worker.esnext",
"import": "./worker.mjs",
"require": "./worker.js"
},
".": {
"types": "./build/ts/index.d.ts",
"esnext": "./index.esnext",
"import": "./index.mjs",
"require": "./index.js"
}
},
"sideEffects": false,
"publishConfig": {
"access": "public",
"@shopify:registry": "https://registry.npmjs.org"
},
"author": "Shopify Inc.",
"repository": {
"type": "git",
"url": "git+https://github.com/Shopify/quilt.git",
"directory": "packages/web-worker"
},
"bugs": {
"url": "https://github.com/Shopify/quilt/issues"
},
"homepage": "https://github.com/Shopify/quilt/blob/main/packages/web-worker/README.md",
"engines": {
"node": ">=18.12.0"
},
"files": [
"build/",
"!build/*.tsbuildinfo",
"!build/ts/**/tests/",
"index.js",
"index.mjs",
"index.esnext",
"babel.js",
"babel.mjs",
"babel.esnext",
"webpack.js",
"webpack.mjs",
"webpack.esnext",
"worker.js",
"worker.mjs",
"worker.esnext"
],
"dependencies": {
"@remote-ui/rpc": "^1.2.5"
},
"devDependencies": {
"@types/fs-extra": "^9.0.1",
"@types/get-port": "^4.2.0",
"@types/koa": "^2.11.3",
"@types/koa-mount": "^4.0.0",
"@types/koa-static": "^4.0.1",
"babel-loader": "^8.2.0",
"fs-extra": "^9.0.0",
"get-port": "^5.1.0",
"koa": "^2.11.0",
"koa-mount": "^4.0.0",
"koa-static": "^5.0.0",
"rollup-plugin-copy": "^3.4.0",
"webpack": "^5.38.0",
"webpack-virtual-modules": "^0.4.3"
},
"peerDependencies": {
"@babel/core": "^7.0.0",
"webpack": "^5.38.0",
"webpack-virtual-modules": "^0.4.3 || ^0.5.0 || ^0.6.0"
},
"peerDependenciesMeta": {
"@babel/core": {
"optional": true
},
"webpack-virtual-modules": {
"optional": true
},
"webpack": {
"optional": true
}
}
}