-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
50 lines (50 loc) · 1.18 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
46
47
48
49
50
{
"name": "shopify-bulk-export",
"type": "module",
"version": "0.3.2",
"description": "A package to help you bulk export data from Shopify's API.",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/travis-r6s/shopify-bulk-export.git"
},
"exports": {
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"dev": "tsup --watch",
"build": "tsup --dts-resolve",
"test": "vitest run",
"prepublishOnly": "pnpm run build",
"lint": "eslint . --fix"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"@graphql-typed-document-node/core": "^3.2.0",
"consola": "^3.2.3",
"fs-extra": "^11.2.0",
"got": "^14.2.1",
"graphql": "^16.8.1",
"ohash": "^1.1.3",
"p-wait-for": "^5.0.2",
"read-package-up": "^11.0.0"
},
"devDependencies": {
"@antfu/eslint-config": "^2.11.1",
"@types/fs-extra": "^11.0.4",
"@types/node": "^20.11.30",
"eslint": "^8.57.0",
"tsup": "8.0.2",
"typescript": "5.4.3",
"vitest": "1.4.0"
}
}