@storifycli/cli 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 +156 -0
  2. package/dist/cli.js +1737 -0
  3. package/package.json +51 -0
package/package.json ADDED
@@ -0,0 +1,51 @@
1
+ {
2
+ "name": "@storifycli/cli",
3
+ "version": "0.1.0",
4
+ "type": "module",
5
+ "description": "Storify theme development CLI — login, live dev preview, validate, build, pack, and upload themes.",
6
+ "bin": {
7
+ "storify": "./dist/cli.js"
8
+ },
9
+ "files": [
10
+ "dist",
11
+ "README.md"
12
+ ],
13
+ "scripts": {
14
+ "build": "tsup",
15
+ "dev": "tsx src/cli.ts",
16
+ "typecheck": "tsc --noEmit",
17
+ "prepublishOnly": "npm run build"
18
+ },
19
+ "engines": {
20
+ "node": ">=20"
21
+ },
22
+ "publishConfig": {
23
+ "access": "public"
24
+ },
25
+ "keywords": [
26
+ "storify",
27
+ "theme",
28
+ "cli",
29
+ "ecommerce",
30
+ "vite",
31
+ "storefront"
32
+ ],
33
+ "author": "Storify",
34
+ "license": "MIT",
35
+ "dependencies": {
36
+ "@clack/prompts": "^0.10.1",
37
+ "archiver": "^7.0.1",
38
+ "commander": "^13.1.0",
39
+ "execa": "^9.6.0",
40
+ "ora": "^8.2.0",
41
+ "picocolors": "^1.1.1",
42
+ "zod": "^3.24.2"
43
+ },
44
+ "devDependencies": {
45
+ "@types/archiver": "^6.0.2",
46
+ "@types/node": "^22.14.0",
47
+ "tsup": "^8.3.5",
48
+ "tsx": "^4.21.3",
49
+ "typescript": "^5.8.2"
50
+ }
51
+ }