-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
46 lines (46 loc) · 1.06 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
{
"name": "@spacejunk/airlock",
"version": "1.6.0",
"description": "Spacetraders.io api client built with typescript, generated via openapi-generator-cli",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"require": "./dist/index.js",
"import": "./dist/index.mjs",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist"
],
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"generate": "openapi-generator-cli generate",
"build": "tsup src/index.ts --format cjs,esm --dts --clean",
"watch": "npm run build -- --watch src",
"prepublishOnly": "npm run build",
"test": ""
},
"keywords": [
"spacetraders",
"openapi",
"typescript",
"fetch"
],
"author": "jonchurch",
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/jonchurch/airlock.git"
},
"devDependencies": {
"@openapitools/openapi-generator-cli": "^2.6.0",
"ts-node": "^10.9.1",
"tsup": "^7.2.0",
"typescript": "^5.0.4"
}
}