hookwright 1.0.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 +116 -0
- package/dist/cli.js +2890 -0
- package/package.json +44 -0
package/package.json
ADDED
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "hookwright",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"description": "Build real, signed e-commerce webhooks from a live Shopify catalogue \u2014 interactive terminal UI, no backend",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"webhook",
|
|
7
|
+
"shopify",
|
|
8
|
+
"cashfree",
|
|
9
|
+
"testing",
|
|
10
|
+
"hmac",
|
|
11
|
+
"cli",
|
|
12
|
+
"ink",
|
|
13
|
+
"abandoned-cart",
|
|
14
|
+
"payload-generator"
|
|
15
|
+
],
|
|
16
|
+
"license": "MIT",
|
|
17
|
+
"type": "module",
|
|
18
|
+
"bin": {
|
|
19
|
+
"hookwright": "dist/cli.js"
|
|
20
|
+
},
|
|
21
|
+
"files": [
|
|
22
|
+
"dist",
|
|
23
|
+
"README.md",
|
|
24
|
+
"LICENSE"
|
|
25
|
+
],
|
|
26
|
+
"scripts": {
|
|
27
|
+
"build": "node scripts/build.mjs",
|
|
28
|
+
"dev": "node scripts/build.mjs --watch",
|
|
29
|
+
"start": "npm run build --silent && node dist/cli.js",
|
|
30
|
+
"test": "node --test test/*.test.mjs",
|
|
31
|
+
"prepublishOnly": "npm run build && npm test"
|
|
32
|
+
},
|
|
33
|
+
"engines": {
|
|
34
|
+
"node": ">=20"
|
|
35
|
+
},
|
|
36
|
+
"dependencies": {
|
|
37
|
+
"@inkjs/ui": "^2.0.0",
|
|
38
|
+
"ink": "^7.1.1",
|
|
39
|
+
"react": "^19.2.8"
|
|
40
|
+
},
|
|
41
|
+
"devDependencies": {
|
|
42
|
+
"esbuild": "^0.28.2"
|
|
43
|
+
}
|
|
44
|
+
}
|