-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 1.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
{
"name": "oasin",
"version": "1.0.5",
"description": "Mixin that combines generated clients for OAS into a single class",
"exports": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"./dist"
],
"type": "module",
"scripts": {
"build": "tsc",
"prepublishOnly": "tsc",
"test": "vitest run --coverage.thresholds.100",
"generate-fixtures": "openapi-generator-cli generate",
"lint": "eslint",
"format": "eslint --fix",
"ci:version": "changeset version",
"ci:publish": "changeset publish"
},
"keywords": [
"openapi",
"openapi-generator",
"typescript",
"api",
"rest"
],
"author": {
"name": "Cristian Petre",
"email": "[email protected]"
},
"license": "MIT",
"publishConfig": {
"provenance": true
},
"repository": {
"type": "git",
"url": "git+https://github.com/driimus/oasin.git"
},
"bugs": {
"url": "https://github.com/driimus/oasin/issues"
},
"homepage": "https://github.com/driimus/oasin#readme",
"devDependencies": {
"@changesets/cli": "^2.26.2",
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@openapitools/openapi-generator-cli": "^2.5.2",
"@tsconfig/node-lts": "^22.0.1",
"@tsconfig/strictest": "^2.0.5",
"@typescript-eslint/eslint-plugin": "^8.0.1",
"@typescript-eslint/parser": "^8.0.1",
"@vitest/coverage-v8": "^2.0.1",
"@vitest/eslint-plugin": "^1.0.1",
"eslint": "^9.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import-x": "^4.0.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-unicorn": "^55.0.0",
"fancy-set": "^0.1.5",
"jest-extended": "^4.0.1",
"lefthook": "^1.7.1",
"prettier": "^3.0.1",
"typescript": "^5.7.2",
"typescript-eslint": "^8.0.1",
"vitest": "^2.0.1"
},
"packageManager": "[email protected]"
}