forked from Shopify/shopify-app-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 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
{
"name": "@shopify/shopify-app-session-storage-kv",
"version": "3.0.6",
"description": "Shopify App Session Storage for KV",
"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/session-storage/shopify-app-session-storage-kv",
"author": "Shopify Inc.",
"license": "MIT",
"main": "./dist/cjs/kv.js",
"module": "./dist/esm/kv.mjs",
"types": "./dist/ts/kv.d.ts",
"scripts": {
"lint": "eslint . --ext .js,.ts",
"build": "yarn run rollup && yarn tsc -p ./tsconfig.build.json",
"test": "jest",
"test:ci": "yarn test",
"rollup": "rollup -c rollup.config.js --bundleConfigAsCjs",
"clean": "rimraf .rollup.cache dist",
"changeset": "changeset",
"version": "changeset version",
"release": "yarn build && changeset publish"
},
"publishConfig": {
"access": "public"
},
"keywords": [
"shopify",
"node",
"app",
"graphql",
"rest",
"webhook",
"Admin API",
"Storefront API",
"session storage",
"KV",
"CloudFlare"
],
"dependencies": {
"semver": "^7.6.0"
},
"peerDependencies": {
"@shopify/shopify-api": "^9.7.2 || ^10.0.0",
"@shopify/shopify-app-session-storage": "^2.1.4"
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20240208.0",
"@shopify/shopify-app-session-storage-test-utils": "^2.0.5",
"miniflare": "^3.20240304.2"
},
"files": [
"dist/*",
"!tsconfig.tsbuildinfo",
"!node_modules"
]
}