-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.35 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
{
"name": "@shopify/shopify-app-session-storage-mysql",
"version": "1.1.10",
"description": "Shopify App Session Storage for MySQL",
"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/shopify-app-session-storage-mysql",
"author": "Shopify Inc.",
"license": "MIT",
"main": "./build/src/mysql.js",
"types": "./build/src/mysql.d.ts",
"scripts": {
"build": "tsc"
},
"publishConfig": {
"access": "public"
},
"keywords": [
"shopify",
"node",
"app",
"graphql",
"rest",
"webhook",
"Admin API",
"Storefront API",
"mysql",
"MySQL",
"session storage"
],
"dependencies": {
"mysql2": "^3.3.1",
"tslib": "^2.4.0"
},
"peerDependencies": {
"@shopify/shopify-api": "^7.5.1",
"@shopify/shopify-app-session-storage": "^1.1.7"
},
"devDependencies": {
"@shopify/eslint-plugin": "^42.1.0",
"@shopify/prettier-config": "^1.1.2",
"@types/jest": "^29.5.1",
"eslint": "^8.40.0",
"eslint-plugin-prettier": "^4.2.1",
"prettier": "^2.8.8",
"typescript": "4.9.5"
},
"files": [
"build/*",
"!bundle/*",
"!tsconfig.tsbuildinfo",
"!node_modules"
]
}