forked from Shopify/quilt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.62 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
{
"name": "@shopify/sewing-kit-koa",
"version": "9.2.0",
"license": "MIT",
"description": "Easily access Sewing Kit assets from a Koa server",
"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/sewing-kit-koa"
},
"bugs": {
"url": "https://github.com/Shopify/quilt/issues"
},
"homepage": "https://github.com/Shopify/quilt/blob/main/packages/sewing-kit-koa/README.md",
"engines": {
"node": "^14.17.0 || >=16.0.0"
},
"dependencies": {
"@shopify/network": "^3.2.1",
"@types/koa-mount": "^4.0.1",
"@types/koa-static": "^4.0.0",
"app-root-path": "^2.1.0",
"browserslist-useragent": "^4.0.0",
"fs-extra": "^9.1.0",
"koa": "^2.13.4",
"koa-compose": ">=4.0.0 <5.0.0",
"koa-mount": "^4.0.0",
"koa-static": "^5.0.0",
"node-gzip": "^1.1.2"
},
"devDependencies": {
"@shopify/jest-koa-mocks": "^5.1.1",
"@shopify/with-env": "^3.0.1",
"@types/app-root-path": "^1.2.4",
"@types/fs-extra": "^9.0.11",
"@types/node-gzip": "^1.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"
}
}
}