-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.62 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "bigrequest",
"version": "0.0.52",
"description": "A typesafe, servelerless-friendly Node.js HTTP request client for the BigCommerce API",
"author": "Matthew Volk",
"license": "MIT",
"engines": {
"node": ">=18"
},
"files": [
"dist"
],
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"build": "tsup",
"lint": "eslint . --max-warnings 0",
"check-types": "tsc --noEmit",
"generate": "node src/generate.mjs",
"test": "echo \"No test specified\""
},
"dependencies": {
"jose": "^5.1.3",
"openapi-fetch": "^0.8.1",
"zod": "^3.22.4"
},
"devDependencies": {
"@bigcommerce/eslint-config": "^2.9.0",
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.1",
"@types/node": "18.0.0",
"eslint": "^8.46.0",
"openapi-typescript": "^6.7.3",
"openapi-typescript-helpers": "^0.0.4",
"prettier": "^3.0.1",
"tsup": "^7.2.0",
"typescript": "^5.1.6"
},
"keywords": [
"bigcommerce",
"big",
"commerce",
"api",
"node",
"typescript",
"javascript",
"ecommerce"
],
"repository": {
"type": "git",
"url": "git+https://github.com/matthewvolk/bigrequest.git",
"directory": "packages/bigrequest"
},
"bugs": {
"url": "https://github.com/matthewvolk/bigrequest/issues"
},
"homepage": "https://github.com/matthewvolk/bigrequest#readme",
"prettier": "@bigcommerce/eslint-config/prettier",
"packageManager": "[email protected]"
}