-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 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
{
"name": "@signal24/openapi-client-codegen",
"type": "module",
"version": "2.1.2",
"description": "OpenAPI client generator for TypeScript apps",
"module": "./dist/src/index.js",
"typings": "./dist/src/index.d.ts",
"bin": {
"generate-openapi-client": "./dist/src/node/cli.js"
},
"exports": {
"./browser": {
"import": "./dist/src/browser/index.js",
"types": "./dist/src/browser/index.d.ts"
},
"./node": {
"import": "./dist/src/node/index.js",
"types": "./dist/src/node/index.d.ts"
}
},
"browser": {
"@hey-api/openapi-ts": false
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc -p tsconfig.browser.json && tsc -p tsconfig.node.json && chmod +x ./dist/src/node/cli.js",
"build:clean": "rm -rf dist && yarn build",
"lint": "eslint . --ext .js,.cjs,.mjs,.ts --fix --ignore-path .gitignore",
"format": "prettier --write ."
},
"author": "Sean Ferguson <[email protected]> ",
"license": "MIT",
"dependencies": {
"@hey-api/client-fetch": "^0.5.0",
"@hey-api/openapi-ts": "^0.58.0"
},
"devDependencies": {
"@tsconfig/node22": "*",
"@types/node": "^22",
"@typescript-eslint/eslint-plugin": "^6.7.5",
"@typescript-eslint/parser": "^6.7.5",
"eslint": "^8.51.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-simple-import-sort": "^10.0.0",
"eslint-plugin-unused-imports": "^3.0.0",
"prettier": "^3.4.1",
"ts-essentials": "^10.0.3",
"ts-node": "^10.9.2",
"tslib": "^2.8.1",
"type-fest": "^4.30.0",
"typescript": "^5.7.2"
}
}