shopq 0.1.0
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/LICENSE +21 -0
- package/README.md +157 -0
- package/dist/shopctl.js +2264 -0
- package/dist/shopq.js +2264 -0
- package/package.json +45 -0
package/package.json
ADDED
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "shopq",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "A zero-dependency Shopify Admin CLI built on Bun",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"license": "MIT",
|
|
7
|
+
"bin": {
|
|
8
|
+
"shopq": "dist/shopq.js"
|
|
9
|
+
},
|
|
10
|
+
"files": [
|
|
11
|
+
"dist"
|
|
12
|
+
],
|
|
13
|
+
"scripts": {
|
|
14
|
+
"build": "bun build bin/shopq.ts --target=node --outfile dist/shopq.js && chmod +x dist/shopq.js",
|
|
15
|
+
"prepublishOnly": "bun run build",
|
|
16
|
+
"test": "bun test",
|
|
17
|
+
"check": "bunx --bun biome check --write .",
|
|
18
|
+
"ci:check": "bunx --bun biome check ."
|
|
19
|
+
},
|
|
20
|
+
"repository": {
|
|
21
|
+
"type": "git",
|
|
22
|
+
"url": "git+https://github.com/c-99-e/shopq.git"
|
|
23
|
+
},
|
|
24
|
+
"homepage": "https://github.com/c-99-e/shopq",
|
|
25
|
+
"bugs": {
|
|
26
|
+
"url": "https://github.com/c-99-e/shopq/issues"
|
|
27
|
+
},
|
|
28
|
+
"keywords": [
|
|
29
|
+
"shopify",
|
|
30
|
+
"cli",
|
|
31
|
+
"admin",
|
|
32
|
+
"graphql",
|
|
33
|
+
"bun"
|
|
34
|
+
],
|
|
35
|
+
"engines": {
|
|
36
|
+
"bun": ">=1.3.0"
|
|
37
|
+
},
|
|
38
|
+
"devDependencies": {
|
|
39
|
+
"@biomejs/biome": "2.4.9",
|
|
40
|
+
"@types/bun": "latest"
|
|
41
|
+
},
|
|
42
|
+
"peerDependencies": {
|
|
43
|
+
"typescript": "^5"
|
|
44
|
+
}
|
|
45
|
+
}
|