@syncify/cli 0.1.0-beta
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 +9 -0
- package/dist/api.js +16 -0
- package/dist/cjs.js +190 -0
- package/dist/cli.js +7 -0
- package/dist/index.js +18 -0
- package/hot.js.liquid +2238 -0
- package/package.json +134 -0
- package/pnpm-lock.yaml +5172 -0
- package/readme.md +1840 -0
- package/schema/syncify.config.json +676 -0
- package/schema/syncify.env.json +58 -0
- package/schema/syncify.package.json +11 -0
- package/types/api.d.ts +319 -0
- package/types/bundle/cache.d.ts +97 -0
- package/types/bundle/file.d.ts +228 -0
- package/types/bundle/hot.d.ts +137 -0
- package/types/bundle/index.d.ts +479 -0
- package/types/bundle/plugin.d.ts +125 -0
- package/types/cli.d.ts +523 -0
- package/types/config/index.d.ts +524 -0
- package/types/config/minify.d.ts +115 -0
- package/types/config/views.d.ts +226 -0
- package/types/index.d.ts +51 -0
- package/types/misc/commands.d.ts +408 -0
- package/types/misc/errors.d.ts +101 -0
- package/types/misc/markdown.d.ts +104 -0
- package/types/misc/modes.d.ts +72 -0
- package/types/misc/requests.d.ts +287 -0
- package/types/misc/shared.d.ts +128 -0
- package/types/transforms/image.d.ts +15 -0
- package/types/transforms/json.d.ts +42 -0
- package/types/transforms/script.d.ts +174 -0
- package/types/transforms/style.d.ts +178 -0
- package/types/transforms/svg.d.ts +189 -0
package/package.json
ADDED
@@ -0,0 +1,134 @@
|
|
1
|
+
{
|
2
|
+
"name": "@syncify/cli",
|
3
|
+
"description": "The next generation build tool for Shopify theme development.",
|
4
|
+
"version": "0.1.0-beta",
|
5
|
+
"license": "MIT",
|
6
|
+
"homepage": "https://github.com/panoply/syncify",
|
7
|
+
"bugs": "https://github.com/panoply/syncify/issues",
|
8
|
+
"repository": {
|
9
|
+
"type": "git",
|
10
|
+
"url": "git://github.com/panoply/syncify.git"
|
11
|
+
},
|
12
|
+
"author": {
|
13
|
+
"name": "ΝΙΚΟΛΑΣ ΣΑΒΒΙΔΗΣ",
|
14
|
+
"url": "https://github.com/panoply",
|
15
|
+
"email": "n.savvidis@gmx.com"
|
16
|
+
},
|
17
|
+
"files": [
|
18
|
+
"dist",
|
19
|
+
"types",
|
20
|
+
"schema",
|
21
|
+
"hot.js.liquid",
|
22
|
+
"LICENCE",
|
23
|
+
"package.json",
|
24
|
+
"pnpm-lock.yaml"
|
25
|
+
],
|
26
|
+
"keywords": [
|
27
|
+
"cli",
|
28
|
+
"command line",
|
29
|
+
"themekit",
|
30
|
+
"syncify",
|
31
|
+
"shopify",
|
32
|
+
"shopify theme",
|
33
|
+
"shopify node",
|
34
|
+
"shopify theme",
|
35
|
+
"shopify sync"
|
36
|
+
],
|
37
|
+
"engines": {
|
38
|
+
"pnpm": ">=7",
|
39
|
+
"node": ">=14",
|
40
|
+
"vscode": "^1.22.0"
|
41
|
+
},
|
42
|
+
"types": "types/index.d.ts",
|
43
|
+
"main": "dist/index.js",
|
44
|
+
"bin": {
|
45
|
+
"syncify": "dist/cli.js",
|
46
|
+
"sync": "dist/cli.js"
|
47
|
+
},
|
48
|
+
"prettier": "@sissel/prettier-config",
|
49
|
+
"eslintConfig": {
|
50
|
+
"extends": "@sissel/eslint-config",
|
51
|
+
"ignorePatterns": [
|
52
|
+
"docs",
|
53
|
+
"dist",
|
54
|
+
"test/e2e/theme"
|
55
|
+
],
|
56
|
+
"rules": {
|
57
|
+
"object-curly-newline": "off",
|
58
|
+
"no-import-assign": "off",
|
59
|
+
"no-new-func": "off"
|
60
|
+
}
|
61
|
+
},
|
62
|
+
"dependencies": {
|
63
|
+
"anymatch": "^3.1.3",
|
64
|
+
"axios": "^1.2.3",
|
65
|
+
"chokidar": "^3.5.3",
|
66
|
+
"cross-spawn": "^7.0.3",
|
67
|
+
"dotenv": "^16.0.3",
|
68
|
+
"fast-glob": "^3.2.12",
|
69
|
+
"finalhandler": "^1.2.0",
|
70
|
+
"fs-extra": "^11.1.0",
|
71
|
+
"gray-matter": "^4.0.3",
|
72
|
+
"html-minifier-terser": "7.1.0",
|
73
|
+
"load-tsconfig": "^0.2.3",
|
74
|
+
"markdown-it": "^13.0.1",
|
75
|
+
"mime-types": "^2.1.35",
|
76
|
+
"minimist": "^1.2.7",
|
77
|
+
"node-notifier": "^10.0.1",
|
78
|
+
"prompts": "^2.4.2",
|
79
|
+
"serve-static": "^1.15.0",
|
80
|
+
"turndown": "^7.1.1",
|
81
|
+
"turndown-plugin-gfm": "^1.0.2",
|
82
|
+
"ws": "^8.12.0"
|
83
|
+
},
|
84
|
+
"devDependencies": {
|
85
|
+
"@sissel/eslint-config": "^1.1.0",
|
86
|
+
"@sissel/prettier-config": "^1.1.0",
|
87
|
+
"@types/finalhandler": "^1.2.0",
|
88
|
+
"@types/fs-extra": "^11.0.1",
|
89
|
+
"@types/mergerino": "^0.4.0",
|
90
|
+
"@types/mime-types": "^2.1.1",
|
91
|
+
"@types/minimist": "^1.2.2",
|
92
|
+
"@types/serve-static": "^1.15.0",
|
93
|
+
"@types/sharp": "^0.31.1",
|
94
|
+
"@types/svg-sprite": "^0.0.34",
|
95
|
+
"@types/ws": "^8.5.4",
|
96
|
+
"ansis": "^1.5.5",
|
97
|
+
"ava": "^5.1.1",
|
98
|
+
"clean-stack": "^5.1.0",
|
99
|
+
"esbuild": "^0.17.3",
|
100
|
+
"eslint": "^8.32.0",
|
101
|
+
"log-update": "^5.0.1",
|
102
|
+
"mergerino": "^0.4.0",
|
103
|
+
"mithril": "^2.2.2",
|
104
|
+
"p-queue": "^7.3.0",
|
105
|
+
"postcss": "^8.4.21",
|
106
|
+
"prettier": "^2.8.3",
|
107
|
+
"rambdax": "^9.0.0",
|
108
|
+
"sass": "^1.57.1",
|
109
|
+
"strip-json-comments": "^5.0.0",
|
110
|
+
"svg-sprite": "^2.0.2",
|
111
|
+
"svgo": "^3.0.2",
|
112
|
+
"tiny-spinner": "^2.0.0",
|
113
|
+
"tsconfig-type": "^1.27.0",
|
114
|
+
"tsup": "^6.5.0",
|
115
|
+
"type-fest": "^3.5.2",
|
116
|
+
"typescript": "^4.9.4",
|
117
|
+
"wrap-ansi": "^8.0.1"
|
118
|
+
},
|
119
|
+
"optionalDependencies": {
|
120
|
+
"sharp": "^0.31.3"
|
121
|
+
},
|
122
|
+
"peerDependencies": {
|
123
|
+
"esbuild": "^0.17.3",
|
124
|
+
"postcss": "^8.4.16",
|
125
|
+
"sass": "^1.54.5",
|
126
|
+
"svg-sprite": "^1.5.4",
|
127
|
+
"svgo": "^2.8.0"
|
128
|
+
},
|
129
|
+
"scripts": {
|
130
|
+
"dev": "tsup --watch",
|
131
|
+
"build": "tsup --minify",
|
132
|
+
"syncify": "dist/cli.js"
|
133
|
+
}
|
134
|
+
}
|