-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.01 KB
/
package.json
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
36
37
38
39
40
41
42
43
44
45
{
"name": "selldone-cli",
"version": "1.0.16",
"description": "It's for ecommerce developers.Use this CLI to deploy your custom storefront layout to Selldone.",
"main": "deploy.mjs",
"type": "module",
"scripts": {
"deploy": "node main.mjs"
},
"bin": {
"selldone": "main.mjs"
},
"keywords": [
"e-commerce",
"webstore",
"online shopping",
"selldone",
"storefront",
"vue"
],
"author": "Mehrdad Pajuhaan <[email protected]> (https://pajuhaan.com)",
"bugs": {
"url": "https://github.com/selldone/cli/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/selldone/cli.git"
},
"homepage": "https://selldone.com",
"license": "ISC",
"dependencies": {
"archiver": "^6.0.1",
"cli-progress": "^3.12.0",
"express": "^4.18.2",
"form-data": "^4.0.0",
"inquirer": "^9.2.12",
"node-fetch": "^3.3.2",
"open": "^9.1.0",
"readline": "^1.3.0",
"yargs": "^17.7.2"
},
"engines": {
"node": ">=14.0.0"
}
}