This repository was archived by the owner on Jan 10, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 227
/
Copy pathpackage.json
60 lines (60 loc) · 1.48 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
{
"name": "@shopify/koa-performance",
"version": "3.7.0",
"license": "MIT",
"description": "Creating middleware that sends performance-related data through StatsD",
"main": "index.js",
"types": "./build/ts/index.d.ts",
"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/koa-performance"
},
"bugs": {
"url": "https://github.com/Shopify/quilt/issues"
},
"homepage": "https://github.com/Shopify/quilt/blob/main/packages/koa-performance/README.md",
"engines": {
"node": ">=18.12.0"
},
"dependencies": {
"@shopify/network": "^3.3.0",
"@shopify/performance": "^4.3.0",
"@shopify/statsd": "^4.5.0",
"@types/koa": "^2.0.0",
"@types/koa-bodyparser": "*",
"@types/koa-compose": "*",
"koa-bodyparser": ">=4.0.0 <5.0.0",
"koa-compose": ">=4.0.0 <5.0.0"
},
"peerDependencies": {
"koa": ">=2.0.0"
},
"devDependencies": {
"@shopify/with-env": "^3.1.0"
},
"files": [
"build/",
"!build/*.tsbuildinfo",
"!build/ts/**/tests/",
"index.js",
"index.mjs",
"index.esnext"
],
"module": "index.mjs",
"esnext": "index.esnext",
"exports": {
".": {
"types": "./build/ts/index.d.ts",
"esnext": "./index.esnext",
"import": "./index.mjs",
"require": "./index.js"
}
}
}