-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.85 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 1.85 KB
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
68
69
70
71
{
"name": "@aligent/bigcommerce-api",
"version": "1.1.2",
"type": "module",
"scripts": {
"test": "tsd",
"lint": "eslint .",
"build:file-list": "node src/internal/reference/list-files",
"build:reference-types": "node src/internal/reference/generate",
"build:summarize-changes": "node scripts/summarize-changes",
"build:clean": "rimraf dist && npm run build:file-list && npm run build:reference-types && npm run build:summarize-changes",
"build": "tshy"
},
"exports": {
"./package.json": "./package.json",
".": {
"import": {
"types": "./dist/esm/index.d.ts",
"default": "./dist/esm/index.js"
},
"require": {
"types": "./dist/commonjs/index.d.ts",
"default": "./dist/commonjs/index.js"
}
}
},
"tshy": {
"exports": {
"./package.json": "./package.json",
".": "./src/index.ts"
}
},
"main": "./dist/commonjs/index.js",
"types": "./dist/commonjs/index.d.ts",
"module": "./dist/esm/index.js",
"description": "Fully typed BigCommerce API client generated from documentation schemas",
"files": [
"dist"
],
"engines": {
"node": ">=20"
},
"repository": {
"type": "git",
"url": "git+https://github.com/aligent/bigcommerce-api.git"
},
"author": "Aligent",
"license": "MIT",
"devDependencies": {
"@aligent/ts-code-standards": "^4.0.2",
"@types/node": "^22.16.5",
"diff": "^8.0.2",
"eslint": "^9.34.0",
"openapi-typescript": "^7.9.1",
"prettier": "^3.6.2",
"rimraf": "^6.0.1",
"simple-git": "^3.28.0",
"ts-morph": "^26.0.0",
"tsd": "^0.33.0",
"tshy": "^3.0.2",
"typescript": "^5.9.2",
"typescript-eslint": "^8.41.0",
"uuid": "^11.1.0"
},
"dependencies": {
"form-data": "^4.0.4",
"node-fetch": "^3.3.2",
"query-string": "^9.2.2"
},
"packageManager": "yarn@4.9.4"
}