easyorders 0.1.14 → 0.1.15
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/README.md +93 -93
- package/dist/bin/cli.js +12 -5
- package/dist/template/theme/config.json +95 -95
- package/dist/template/theme/home-sections/category-mosaic/config.json +40 -40
- package/dist/template/theme/home-sections/category-mosaic/template.liquid +155 -155
- package/dist/template/theme/home-sections/editorial-feature/config.json +67 -67
- package/dist/template/theme/home-sections/editorial-feature/template.liquid +153 -153
- package/dist/template/theme/home-sections/newsletter-luxe/config.json +60 -60
- package/dist/template/theme/home-sections/newsletter-luxe/template.liquid +144 -144
- package/dist/template/theme/home-sections/runway-hero/config.json +91 -91
- package/dist/template/theme/home-sections/runway-hero/template.liquid +159 -159
- package/dist/template/theme/home-sections/shop-the-look/config.json +75 -75
- package/dist/template/theme/home-sections/shop-the-look/template.liquid +304 -304
- package/dist/template/theme/home-sections/trust-promise/config.json +47 -47
- package/dist/template/theme/home-sections/trust-promise/template.liquid +96 -96
- package/dist/template/theme/schema.json +151 -151
- package/dist/template/theme/script.js +586 -586
- package/dist/template/theme/sections/breadcrumbs.liquid +17 -17
- package/dist/template/theme/sections/categories.liquid +9 -9
- package/dist/template/theme/sections/fake-counter.liquid +27 -27
- package/dist/template/theme/sections/fake-stock.liquid +6 -6
- package/dist/template/theme/sections/fake-visitor.liquid +6 -6
- package/dist/template/theme/sections/featured-products.liquid +110 -110
- package/dist/template/theme/sections/fixed-buy-button.liquid +46 -46
- package/dist/template/theme/sections/footer.liquid +128 -128
- package/dist/template/theme/sections/gallery.liquid +61 -61
- package/dist/template/theme/sections/header.liquid +152 -152
- package/dist/template/theme/sections/home-products-grid.liquid +109 -109
- package/dist/template/theme/sections/list-products.liquid +93 -93
- package/dist/template/theme/sections/order-invoice.liquid +154 -154
- package/dist/template/theme/sections/product-description.liquid +30 -30
- package/dist/template/theme/sections/product-details.liquid +63 -63
- package/dist/template/theme/sections/products-grid.liquid +86 -86
- package/dist/template/theme/sections/related-products.liquid +88 -88
- package/dist/template/theme/sections/reviews.liquid +55 -55
- package/dist/template/theme/sections/slider.liquid +43 -43
- package/dist/template/theme/sections/thanks.liquid +33 -33
- package/dist/template/theme/style.css +3923 -3923
- package/dist/template/theme/theme-data.json +9 -9
- package/package.json +40 -40
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
{
|
|
2
|
-
"hero_slides": [],
|
|
3
|
-
"color_scheme": "light",
|
|
4
|
-
"color_primary": "#1A1A2E",
|
|
5
|
-
"hero_headline": "Welcome to Our Store",
|
|
6
|
-
"font_size_base": 16,
|
|
7
|
-
"hero_show_overlay": true,
|
|
8
|
-
"product_badge_types": ["sale", "new"]
|
|
9
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"hero_slides": [],
|
|
3
|
+
"color_scheme": "light",
|
|
4
|
+
"color_primary": "#1A1A2E",
|
|
5
|
+
"hero_headline": "Welcome to Our Store",
|
|
6
|
+
"font_size_base": 16,
|
|
7
|
+
"hero_show_overlay": true,
|
|
8
|
+
"product_badge_types": ["sale", "new"]
|
|
9
|
+
}
|
package/package.json
CHANGED
|
@@ -1,40 +1,40 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "easyorders",
|
|
3
|
-
"version": "0.1.
|
|
4
|
-
"description": "CLI tool for creating and developing Easy Orders themes",
|
|
5
|
-
"type": "module",
|
|
6
|
-
"bin": {
|
|
7
|
-
"easyorders": "dist/bin/cli.js"
|
|
8
|
-
},
|
|
9
|
-
"files": [
|
|
10
|
-
"dist/"
|
|
11
|
-
],
|
|
12
|
-
"keywords": [
|
|
13
|
-
"easy-orders",
|
|
14
|
-
"easyorders",
|
|
15
|
-
"theme",
|
|
16
|
-
"ecommerce"
|
|
17
|
-
],
|
|
18
|
-
"license": "MIT",
|
|
19
|
-
"scripts": {
|
|
20
|
-
"build": "tsc && shx rm -rf dist/template && shx cp -r cli/template dist/template",
|
|
21
|
-
"dev": "npx tsx cli/bin/cli.ts start",
|
|
22
|
-
"create-theme": "npx tsx cli/bin/cli.ts create-theme"
|
|
23
|
-
},
|
|
24
|
-
"dependencies": {
|
|
25
|
-
"axios": "^1.9.0",
|
|
26
|
-
"cloudflared": "^0.7.1",
|
|
27
|
-
"cors": "^2.8.6",
|
|
28
|
-
"dotenv": "^17.4.0",
|
|
29
|
-
"express": "^4.21.2"
|
|
30
|
-
},
|
|
31
|
-
"devDependencies": {
|
|
32
|
-
"@types/cors": "^2.8.19",
|
|
33
|
-
"@types/express": "^4.17.21",
|
|
34
|
-
"@types/node": "^22.10.0",
|
|
35
|
-
"concurrently": "^9.2.1",
|
|
36
|
-
"shx": "^0.4.0",
|
|
37
|
-
"tsx": "^4.19.2",
|
|
38
|
-
"typescript": "^5.7.2"
|
|
39
|
-
}
|
|
40
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "easyorders",
|
|
3
|
+
"version": "0.1.15",
|
|
4
|
+
"description": "CLI tool for creating and developing Easy Orders themes",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"bin": {
|
|
7
|
+
"easyorders": "dist/bin/cli.js"
|
|
8
|
+
},
|
|
9
|
+
"files": [
|
|
10
|
+
"dist/"
|
|
11
|
+
],
|
|
12
|
+
"keywords": [
|
|
13
|
+
"easy-orders",
|
|
14
|
+
"easyorders",
|
|
15
|
+
"theme",
|
|
16
|
+
"ecommerce"
|
|
17
|
+
],
|
|
18
|
+
"license": "MIT",
|
|
19
|
+
"scripts": {
|
|
20
|
+
"build": "tsc && shx rm -rf dist/template && shx cp -r cli/template dist/template",
|
|
21
|
+
"dev": "npx tsx cli/bin/cli.ts start",
|
|
22
|
+
"create-theme": "npx tsx cli/bin/cli.ts create-theme"
|
|
23
|
+
},
|
|
24
|
+
"dependencies": {
|
|
25
|
+
"axios": "^1.9.0",
|
|
26
|
+
"cloudflared": "^0.7.1",
|
|
27
|
+
"cors": "^2.8.6",
|
|
28
|
+
"dotenv": "^17.4.0",
|
|
29
|
+
"express": "^4.21.2"
|
|
30
|
+
},
|
|
31
|
+
"devDependencies": {
|
|
32
|
+
"@types/cors": "^2.8.19",
|
|
33
|
+
"@types/express": "^4.17.21",
|
|
34
|
+
"@types/node": "^22.10.0",
|
|
35
|
+
"concurrently": "^9.2.1",
|
|
36
|
+
"shx": "^0.4.0",
|
|
37
|
+
"tsx": "^4.19.2",
|
|
38
|
+
"typescript": "^5.7.2"
|
|
39
|
+
}
|
|
40
|
+
}
|