-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 834 Bytes
/
Copy pathpackage.json
File metadata and controls
35 lines (35 loc) · 834 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
{
"name": "shopify-theme-forge",
"version": "1.0.0",
"description": "Visual Shopify theme builder with drag-drop interface and Liquid template export",
"type": "module",
"bin": {
"theme-forge": "./dist/cli.js"
},
"scripts": {
"build": "tsc",
"dev": "tsx watch src/cli.ts",
"start": "node dist/cli.js",
"test": "vitest"
},
"keywords": ["shopify", "theme", "liquid", "visual-builder", "drag-drop"],
"author": "moggan1337",
"license": "MIT",
"dependencies": {
"chalk": "^5.3.0",
"commander": "^12.1.0",
"inquirer": "^9.2.20",
"ora": "^8.1.0",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/inquirer": "^9.0.7",
"@types/node": "^22.8.4",
"tsx": "^4.19.2",
"typescript": "^5.6.3",
"vitest": "^2.1.4"
},
"engines": {
"node": ">=20.0.0"
}
}