@builtbystack/sq-shopify-theme-sdk 0.0.32 → 0.0.34
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +105 -1
- package/dist/sq-shopify-theme-sdk.d.ts +42 -1
- package/dist/sq-shopify-theme-sdk.js +1367 -1050
- package/dist/sq-shopify-theme-sdk.umd.js +103 -56
- package/package.json +27 -24
package/package.json
CHANGED
|
@@ -1,19 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@builtbystack/sq-shopify-theme-sdk",
|
|
3
3
|
"private": false,
|
|
4
|
-
"version": "0.0.
|
|
5
|
-
"files": [
|
|
4
|
+
"version": "0.0.34",
|
|
5
|
+
"files": [
|
|
6
|
+
"dist"
|
|
7
|
+
],
|
|
6
8
|
"main": "dist/sq-shopify-theme-sdk.js",
|
|
7
9
|
"type": "module",
|
|
8
|
-
"scripts": {
|
|
9
|
-
"dev": "vite",
|
|
10
|
-
"doc": "typedoc --readme README.doc.md --disableSources --excludePrivate --plugin typedoc-plugin-markdown --entryPoints ./src/index.ts && concat-md --decrease-title-levels --dir-name-as-title docs > README.md",
|
|
11
|
-
"build": "tsc && vite build",
|
|
12
|
-
"preview": "vite preview",
|
|
13
|
-
"codegen": "graphql-codegen --config codegen.ts",
|
|
14
|
-
"deploy": "npm run codegen && npm run build && npm run doc && npm pack && npm publish",
|
|
15
|
-
"format": "biome check --write ./src/*.{ts,graphql} --config-path ../biome.json"
|
|
16
|
-
},
|
|
17
10
|
"publishConfig": {
|
|
18
11
|
"access": "public"
|
|
19
12
|
},
|
|
@@ -26,19 +19,29 @@
|
|
|
26
19
|
},
|
|
27
20
|
"dependencies": {
|
|
28
21
|
"graphql": "^16",
|
|
29
|
-
"graphql-request": "^6"
|
|
22
|
+
"graphql-request": "^6",
|
|
23
|
+
"graphql-tag": "2.12.6"
|
|
30
24
|
},
|
|
31
25
|
"devDependencies": {
|
|
32
|
-
"@biomejs/biome": "
|
|
33
|
-
"@graphql-codegen/cli": "^5",
|
|
34
|
-
"@graphql-codegen/typescript
|
|
35
|
-
"@graphql-codegen/typescript-operations": "^4",
|
|
36
|
-
"@
|
|
37
|
-
"
|
|
38
|
-
"
|
|
39
|
-
"
|
|
40
|
-
"
|
|
41
|
-
"
|
|
42
|
-
"
|
|
26
|
+
"@biomejs/biome": "2.0.6",
|
|
27
|
+
"@graphql-codegen/cli": "^5.0.0",
|
|
28
|
+
"@graphql-codegen/typescript": "^4.0.0",
|
|
29
|
+
"@graphql-codegen/typescript-operations": "^4.0.0",
|
|
30
|
+
"@graphql-codegen/typescript-graphql-request": "^6.3.0",
|
|
31
|
+
"typescript": "^5.8.0",
|
|
32
|
+
"vite": "^6.2.0",
|
|
33
|
+
"vite-plugin-dts": "^4.0.0",
|
|
34
|
+
"typedoc": "0.26.2",
|
|
35
|
+
"typedoc-plugin-markdown": "4.1.0",
|
|
36
|
+
"concat-md": "^0.5.1"
|
|
37
|
+
},
|
|
38
|
+
"scripts": {
|
|
39
|
+
"dev": "vite",
|
|
40
|
+
"doc": "typedoc --readme README.doc.md --disableSources --excludePrivate --plugin typedoc-plugin-markdown --entryPoints ./src/index.ts && concat-md --decrease-title-levels --dir-name-as-title docs > README.md",
|
|
41
|
+
"build": "tsc && vite build",
|
|
42
|
+
"preview": "vite preview",
|
|
43
|
+
"codegen": "graphql-codegen --config codegen.ts",
|
|
44
|
+
"deploy": "pnpm codegen && pnpm build && pnpm doc && pnpm pack && pnpm publish",
|
|
45
|
+
"format": "biome check --write ./src --config-path ../biome.json"
|
|
43
46
|
}
|
|
44
|
-
}
|
|
47
|
+
}
|