forked from Shopify/shopify-app-js
-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
86 lines (86 loc) · 2.27 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
{
"name": "@anselm94/shopify-app-hono",
"version": "0.2.0",
"description": "Shopify Hono Middleware - to simplify the building of Shopify Apps with Hono web framework",
"repository": {
"type": "git",
"url": "git+https://github.com/anselm94/shopify-app-hono.git"
},
"bugs": {
"url": "https://github.com/anselm94/shopify-app-hono/issues"
},
"homepage": "https://github.com/anselm94/shopify-app-hono/tree/main/packages/shopify-app-hono",
"author": "Merbin J Anselm (anselm94)",
"type": "module",
"license": "MIT",
"main": "./build/index.js",
"module": "build/index.mjs",
"types": "./build/index.d.ts",
"scripts": {
"build": "rimraf ./build && rollup --config",
"bundle": "rollup --config",
"test": "jest",
"lint": "prettier -c . && eslint .",
"format": "prettier -w . && eslint --fix .",
"release": "npm run build && changeset publish",
"clean": "rimraf ./build"
},
"publishConfig": {
"access": "public"
},
"keywords": [
"shopify",
"node",
"hono",
"app",
"graphql",
"rest",
"webhook",
"Admin API",
"Storefront API"
],
"dependencies": {
"@shopify/shopify-api": "^7.0.0",
"@shopify/shopify-app-session-storage": "^1.1.2",
"compare-versions": "^6.0.0-rc.1",
"hono": "^3.1.6",
"tslib": "^2.5.0"
},
"devDependencies": {
"@changesets/cli": "^2.26.1",
"@shopify/eslint-plugin": "^42.1.0",
"@shopify/prettier-config": "^1.1.2",
"@types/jest": "^29.5.1",
"@types/jsonwebtoken": "^9.0.1",
"esbuild": "^0.17.17",
"eslint": "^8.38.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.5.0",
"jest-fetch-mock": "^3.0.3",
"jest-runner-eslint": "^2.0.0",
"jsonwebtoken": "^9.0.0",
"prettier": "^2.8.7",
"rimraf": "^5.0.0",
"rollup": "^3.20.7",
"rollup-plugin-dts": "^5.3.0",
"rollup-plugin-esbuild": "^5.0.0",
"supertest": "^6.3.3",
"ts-jest": "^29.1.0",
"typescript": "^5.0.4"
},
"files": [
"build"
],
"exports": {
".": {
"types": "./build/index.d.ts",
"import": "./build/index.mjs",
"require": "./build/index.js"
},
"./adapter": {
"types": "./build/adapter-hono.d.ts",
"import": "./build/adapter-hono.mjs",
"require": "./build/adapter-hono.js"
}
}
}