-
Notifications
You must be signed in to change notification settings - Fork 113
/
package.json
114 lines (114 loc) · 3.69 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
{
"name": "@shopify/shopify-api",
"version": "11.6.0",
"description": "Shopify API Library for Node - accelerate development with support for authentication, graphql proxy, webhooks",
"types": "./dist/ts/lib/index.d.ts",
"module": "./dist/esm/lib/index.mjs",
"main": "./dist/cjs/lib/index.js",
"exports": {
".": {
"types": "./dist/ts/lib/index.d.ts",
"import": "./dist/esm/lib/index.mjs",
"require": "./dist/cjs/lib/index.js",
"default": "./dist/cjs/lib/index.js"
},
"./rest/admin/*": {
"types": "./dist/ts/rest/admin/*/index.d.ts",
"import": "./dist/esm/rest/admin/*/index.mjs",
"require": "./dist/cjs/rest/admin/*/index.js",
"default": "./dist/cjs/rest/admin/*/index.js"
},
"./runtime": {
"types": "./dist/ts/runtime/index.d.ts",
"import": "./dist/esm/runtime/index.mjs",
"require": "./dist/cjs/runtime/index.js",
"default": "./dist/cjs/runtime/index.js"
},
"./adapters/*": {
"types": "./dist/ts/adapters/*/index.d.ts",
"import": "./dist/esm/adapters/*/index.mjs",
"require": "./dist/cjs/adapters/*/index.js",
"default": "./dist/cjs/adapters/*/index.js"
},
"./test-helpers": {
"types": "./dist/ts/test-helpers/index.d.ts",
"import": "./dist/esm/test-helpers/index.mjs",
"require": "./dist/cjs/test-helpers/index.js",
"default": "./dist/cjs/test-helpers/index.js"
}
},
"prettier": "@shopify/prettier-config",
"scripts": {
"test:all": "pnpm pretest:adapters && jest && pnpm posttest:adapters",
"test:ci": "pnpm test && pnpm test:rest_resources && pnpm test:adapters",
"test": "jest --selectProjects library",
"pretest:adapters": "pnpm rollup -c adapters/__e2etests__/rollup.test-apps.config.js",
"test:adapters": "jest --selectProjects adapters:mock adapters:node adapters:cf-worker adapters:web-api",
"test:rest_resources": "jest --selectProjects rest_resources",
"lint": "jest --selectProjects lint",
"test:dev": "jest --selectProjects library lint",
"build": "pnpm rollup -c rollup.config.js && pnpm tsc -p ./tsconfig.build.json",
"tsc": "tsc",
"rollup": "rollup --bundleConfigAsCjs",
"clean": "rimraf .rollup.cache dist bundle",
"release": "pnpm build && changeset publish"
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Shopify/shopify-app-js.git"
},
"bugs": {
"url": "https://github.com/Shopify/shopify-app-js/issues"
},
"homepage": "https://github.com/Shopify/shopify-app-js/tree/main/packages/apps/shopify-api",
"author": "Shopify Inc.",
"license": "MIT",
"keywords": [
"shopify",
"node",
"jwt",
"app",
"graphql",
"rest",
"webhook",
"Admin API",
"Storefront API"
],
"dependencies": {
"@shopify/admin-api-client": "^1.0.4",
"@shopify/graphql-client": "^1.2.1",
"@shopify/network": "^3.3.0",
"@shopify/storefront-api-client": "^1.0.3",
"compare-versions": "^6.1.1",
"isbot": "^5.1.17",
"jose": "^5.9.6",
"jsonwebtoken": "^9.0.2",
"node-fetch": "^2.6.1",
"tslib": "^2.8.1",
"uuid": "^10.0.0"
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20241022.0",
"@swc/core": "^1.8.0",
"@types/express": "^4.17.13",
"@types/jsonwebtoken": "^9.0.7",
"@types/node-fetch": "^2.6.11",
"@types/uuid": "^10.0.0",
"expect": "^29.7.0",
"express": "^4.21.1",
"jest-environment-miniflare": "^2.14.4",
"miniflare": "^3.20241022.0",
"rollup": "^4.24.4",
"rollup-plugin-swc": "^0.2.1",
"wrangler": "^3.83.0"
},
"files": [
"dist/*",
"!bundle/*",
"!node_modules",
"!adapters/__e2etests__/*"
]
}