-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
41 lines (41 loc) · 1.16 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
{
"name": "simple-koa-shopify-auth",
"version": "3.0.0",
"description": "A better, simplified version of the now deprecated @Shopify/koa-shopify-auth middleware library. It removes the use of cookies for sessions (which greatly smooths the auth process), replaces a deprecated API call, and supports v2 of the official @shopify/shopify-api package.",
"author": "TheSecurityDev",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/TheSecurityDev/simple-koa-shopify-auth.git"
},
"homepage": "https://github.com/TheSecurityDev/simple-koa-shopify-auth#readme",
"bugs": {
"url": "https://github.com/TheSecurityDev/simple-koa-shopify-auth/issues"
},
"keywords": [
"shopify",
"koa",
"middleware",
"auth"
],
"main": "lib/index.js",
"files": [
"lib",
"app-bridge"
],
"scripts": {
"build": "tsc",
"test": "echo \"Error: no test specified\" && exit 1",
"prepublish": "npm run build"
},
"dependencies": {
"lru-cache": "^10.2.0"
},
"peerDependencies": {
"@shopify/shopify-api": "^5.3.0"
},
"devDependencies": {
"@types/koa": "^2.14.0",
"typescript": "^5.3.3"
}
}