-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
135 lines (135 loc) · 3.97 KB
/
package.json
File metadata and controls
135 lines (135 loc) · 3.97 KB
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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
{
"name": "shopify-app-nuxt",
"version": "1.1.0",
"description": "Nuxt module for building Shopify apps — authentication, webhooks, billing, Polaris components, and App Bridge integration",
"repository": {
"url": "git+https://github.com/kiriminaja/shopify-app-nuxt.git"
},
"homepage": "https://shopify-app-nuxt.vercel.app",
"keywords": [
"nuxt",
"nuxt-module",
"shopify",
"polaris",
"polaris-web-components"
],
"license": "MIT",
"type": "module",
"author": "KiriminAja",
"exports": {
".": {
"types": "./dist/types.d.mts",
"import": "./dist/module.mjs",
"require": "./dist/module.mjs"
},
"./test-helpers": {
"types": "./dist/runtime/server/test-helpers/index.d.ts",
"import": "./dist/runtime/server/test-helpers/index.js"
},
"./shopify-api": {
"types": "./dist/runtime/shopify-api.d.ts",
"import": "./dist/runtime/shopify-api.js"
},
"./shopify-app-session-storage": {
"types": "./dist/runtime/shopify-app-session-storage.d.ts",
"import": "./dist/runtime/shopify-app-session-storage.js"
},
"./shopify-app-session-storage-memory": {
"types": "./dist/runtime/shopify-app-session-storage-memory.d.ts",
"import": "./dist/runtime/shopify-app-session-storage-memory.js"
},
"./admin-api-client": {
"types": "./dist/runtime/admin-api-client.d.ts",
"import": "./dist/runtime/admin-api-client.js"
},
"./app-bridge-types": {
"types": "./dist/runtime/app-bridge-types.d.ts",
"import": "./dist/runtime/app-bridge-types.js"
}
},
"main": "./dist/module.mjs",
"types": "./dist/types.d.mts",
"typesVersions": {
"*": {
".": [
"./dist/types.d.mts"
],
"shopify-api": [
"./dist/runtime/shopify-api.d.ts"
],
"shopify-app-session-storage": [
"./dist/runtime/shopify-app-session-storage.d.ts"
],
"shopify-app-session-storage-memory": [
"./dist/runtime/shopify-app-session-storage-memory.d.ts"
],
"admin-api-client": [
"./dist/runtime/admin-api-client.d.ts"
],
"app-bridge-types": [
"./dist/runtime/app-bridge-types.d.ts"
]
}
},
"files": [
"dist"
],
"workspaces": [
"playground"
],
"scripts": {
"prepack": "nuxt-module-build build",
"dev": "bun run dev:prepare && cd playground && shopify app dev",
"dev:build": "cd playground && nuxt build",
"dev:docs": "cd playground && nuxt dev --open --port 3001",
"dev:prepare": "nuxt-module-build build --stub && nuxt-module-build prepare && cd playground && nuxt prepare",
"release": "bun run lint && bun run test && bun run prepack && changelogen --release && npm publish --access public && git push --follow-tags",
"lint": "eslint .",
"test": "vitest run",
"test:watch": "vitest watch",
"test:types": "vue-tsc --noEmit && cd playground && vue-tsc --noEmit"
},
"dependencies": {
"@nuxt/kit": "^4.4.2",
"@shopify/admin-api-client": "^1.1.2",
"@shopify/app-bridge-types": "^0.7.0",
"@shopify/shopify-api": "^13.0.0",
"@shopify/shopify-app-session-storage": "^5.0.0",
"@shopify/shopify-app-session-storage-memory": "^6.0.0",
"h3": "^1.15.11",
"isbot": "^5.1.37"
},
"devDependencies": {
"@nuxt/devtools": "^3.2.4",
"@nuxt/eslint-config": "^1.15.2",
"@nuxt/module-builder": "^1.0.2",
"@nuxt/schema": "^4.4.2",
"@nuxt/test-utils": "^4.0.1",
"@types/node": "^25.5.2",
"changelogen": "^0.6.2",
"eslint": "^10.2.0",
"nuxt": "^4.4.2",
"typescript": "^5.9.3",
"vitest": "^4.1.4",
"vue-tsc": "^3.2.6"
},
"overrides": {
"vitest-environment-nuxt": "1.0.1"
},
"peerDependencies": {
"@graphql-codegen/cli": "",
"@shopify/graphql-codegen": "",
"graphql": ""
},
"peerDependenciesMeta": {
"@graphql-codegen/cli": {
"optional": true
},
"@shopify/graphql-codegen": {
"optional": true
},
"graphql": {
"optional": true
}
}
}