-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
34 lines (34 loc) · 842 Bytes
/
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
{
"name": "shopify-product-export-to-csv",
"version": "1.0.0",
"description": "Tool to export products from any Shopify store to CSV",
"main": "app.js",
"type": "module",
"bin": {
"shopify-export": "./app.js"
},
"scripts": {
"start": "node app.js"
},
"author": "ECOMGRADUATES LLC",
"repository": {
"type": "git",
"url": "git+https://github.com/EcomGraduates/shopify-product-export-to-csv.git"
},
"license": "",
"keywords": [
"shopify",
"shopify product export",
"shopify product exporter",
"shopify product export to csv",
"shopify product export to csv nodejs",
"shopify product export to csv nodejs app"
],
"dependencies": {
"@fast-csv/format": "^5.0.0",
"axios": "^1.6.8",
"fs": "^0.0.1-security",
"inquirer": "^9.2.17",
"prompts": "^2.4.2"
}
}