@appapprove/shopify-check 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.
Files changed (3) hide show
  1. package/README.md +79 -0
  2. package/dist/cli.js +5320 -0
  3. package/package.json +54 -0
package/package.json ADDED
@@ -0,0 +1,54 @@
1
+ {
2
+ "name": "@appapprove/shopify-check",
3
+ "version": "0.1.0",
4
+ "description": "Pre-submission compliance checker for Shopify apps. Surfaces 20+ App Store review failures locally — API scopes, GDPR webhooks, App Bridge, billing, security headers, performance budget, and more.",
5
+ "keywords": [
6
+ "shopify",
7
+ "shopify-app",
8
+ "shopify-app-store",
9
+ "compliance",
10
+ "linter",
11
+ "checker",
12
+ "appapprove"
13
+ ],
14
+ "license": "MIT",
15
+ "author": "AppApprove",
16
+ "homepage": "https://appapprove.com",
17
+ "repository": {
18
+ "type": "git",
19
+ "url": "https://github.com/ArasHuseyin/shopify-builder.git",
20
+ "directory": "apps/checker-cli"
21
+ },
22
+ "type": "module",
23
+ "bin": {
24
+ "shopify-check": "./dist/cli.js"
25
+ },
26
+ "files": [
27
+ "dist",
28
+ "README.md"
29
+ ],
30
+ "engines": {
31
+ "node": ">=20"
32
+ },
33
+ "dependencies": {
34
+ "typescript": "^5.6.3",
35
+ "yaml": "^2.6.1",
36
+ "zod": "^3.23.8"
37
+ },
38
+ "devDependencies": {
39
+ "@types/node": "^22.7.0",
40
+ "tsup": "^8.3.5",
41
+ "tsx": "^4.19.2",
42
+ "@shopify-builder/checker-shopify": "0.0.1"
43
+ },
44
+ "publishConfig": {
45
+ "access": "public"
46
+ },
47
+ "scripts": {
48
+ "dev": "tsx watch src/cli.ts",
49
+ "start": "tsx src/cli.ts",
50
+ "typecheck": "tsc --noEmit",
51
+ "build": "tsup",
52
+ "pack:test": "pnpm build && npm pack"
53
+ }
54
+ }