-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.12 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
{
"name": "@kampfire/bulkify",
"version": "1.8.5",
"description": "For handling bulk operations in Shopify",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist/**/*.js",
"dist/**/*.d.ts"
],
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/kampfire-dev/bulkify.git"
},
"homepage": "https://github.com/kampfire-dev/bulkify",
"scripts": {
"build": "rimraf dist && tsc",
"dev": "tsc -w",
"test": "vitest",
"script": "tsx ./src/tests/script.ts",
"example:nested": "tsx ./src/examples/nested-objects.ts"
},
"author": "Matt Oskamp",
"license": "ISC",
"devDependencies": {
"@types/node": "^20.11.14",
"dotenv": "^16.4.1",
"rimraf": "^5.0.5",
"tsx": "^4.7.0",
"typescript": "^5.3.3",
"vitest": "^1.5.3"
},
"dependencies": {
"@shopify/admin-api-client": "^1.0.4",
"@shopify/graphql-client": "^0.9.3",
"@shopify/shopify-api": "^11.6.0",
"fast-xml-parser": "^4.3.4",
"ora": "^8.0.1"
},
"types": "./dist/src/index.d.ts",
"keywords": [
"shopify",
"bulk",
"operations"
]
}