forked from ajaishankar/openapi-typescript-fetch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
107 lines (107 loc) · 2.89 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "@cuppachino/openapi-fetch",
"description": "An updated fork of ajaishankar's openapi-typescript-fetch",
"version": "2.2.0",
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">= 12.0.0",
"npm": ">= 7.0.0"
},
"author": "Ajai Shankar",
"license": "MIT",
"type": "module",
"main": "./dist/cjs/index.cjs",
"types": "./dist/index.d.ts",
"module": "./dist/esm/index.js",
"exports": {
"types": "./dist/index.d.ts",
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.cjs",
"browser": "./dist/esm/index.js",
"default": "./dist/cjs/index.cjs"
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "https://github.com/cuppachino/openapi-typescript-fetch"
},
"keywords": [
"fetch",
"client",
"swagger",
"typescript",
"ts",
"openapi",
"openapi 3",
"node"
],
"bugs": {
"url": "https://github.com/cuppachino/openapi-typescript-fetch/issues"
},
"homepage": "https://github.com/cuppachino/openapi-typescript-fetch#readme",
"devDependencies": {
"@changesets/cli": "^2.26.1",
"@types/jest": "^29.5.0",
"@types/node": "^18.15.5",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"codecov": "^3.8.3",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"msw": "^0.35.0",
"prettier": "^2.8.6",
"remark": "^14.0.2",
"remark-cli": "^11.0.0",
"remark-lint-emphasis-marker": "^3.1.1",
"remark-lint-list-item-indent": "^3.1.1",
"remark-lint-strong-marker": "^3.1.1",
"remark-preset-lint-consistent": "^5.1.1",
"remark-preset-lint-recommended": "^6.1.2",
"rimraf": "^3.0.2",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1",
"typescript": "^5.0.2",
"whatwg-fetch": "^3.6.2"
},
"prettier": {
"trailingComma": "all",
"singleQuote": true,
"semi": false
},
"remarkConfig": {
"settings": {
"emphasis": "*",
"strong": "*"
},
"plugins": [
"remark-preset-lint-consistent",
"remark-preset-lint-recommended",
[
"remark-lint-emphasis-marker",
"*"
],
[
"remark-lint-strong-marker",
"*"
]
]
},
"scripts": {
"clean": "rimraf ./dist",
"build": "npm run clean && tsc --project tsconfig.json && tsc --project tsconfig.cjs.json && node ./scripts/os.js",
"lint": "eslint . --fix",
"format": "remark . --quiet --frail --output",
"test": "tsc --noEmit --project tsconfig.json && jest",
"version-package": "changeset version && pnpm lint",
"release": "pnpm build && pnpm test && changeset publish",
"test:coverage": "npm run build && jest --no-cache --coverage && codecov",
"test:coverage:local": "npm run build && jest --no-cache --collectCoverage"
}
}