-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.43 KB
/
Copy pathpackage.json
File metadata and controls
51 lines (51 loc) · 1.43 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
{
"name": "shipengine-api",
"version": "1.0.0",
"description": "An Axios-based TypeScript client for the ShipEngine API",
"main": "./dist/cjs/index.js",
"exports": {
".": {
"import": {
"types": "./dist/esm/types/index.d.ts",
"default": "./dist/esm/index.js"
},
"require": {
"types": "./dist/cjs/types/index.d.ts",
"default": "./dist/cjs/index.js"
}
}
},
"type": "module",
"types": "./dist/cjs/types/index.d.ts",
"scripts": {
"clean": "npm run clean:src && npm run clean:dist",
"clean:src": "rm -rf ./src",
"clean:dist": "rm -rf ./dist",
"build": "npm run clean && npm run build:generate && npm run build:esm && npm run build:cjs",
"build:generate": "openapi-generator-cli generate -i shipengine-openapi/openapi.yaml -g typescript-axios -o ./src",
"build:esm": "tsc -p ./tsconfig.esm.json",
"build:cjs": "tsc -p ./tsconfig.cjs.json"
},
"repository": {
"type": "git",
"url": "https://github.com/clalexander/shipengine-api.git"
},
"keywords": [
"shipengine",
"api",
"client",
"openapi",
"typescript"
],
"author": "Christopher Alexander",
"license": "MIT",
"bugs": {
"url": "https://github.com/clalexander/shipengine-api/issues"
},
"devDependencies": {
"@openapitools/openapi-generator-cli": "^2.7.0",
"@types/node": "^20.3.3",
"shipengine-openapi": "^1.12.5",
"typescript": "^5.1.6"
}
}