forked from metadevpro/openapi3-ts
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2.1 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 2.1 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "openapi3-ts",
"version": "4.2.1",
"description": "TS Model & utils for OpenAPI 3.x specification.",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
},
"./oas30": {
"types": "./dist/oas30.d.ts",
"import": "./dist/oas30.mjs",
"require": "./dist/oas30.js"
},
"./oas31": {
"types": "./dist/oas31.d.ts",
"import": "./dist/oas31.mjs",
"require": "./dist/oas31.js"
}
},
"repository": {
"type": "git",
"url": "https://github.com/metadevpro/openapi3-ts.git"
},
"scripts": {
"clean": "rimraf dist",
"build": "vite build && tsc --emitDeclarationOnly",
"version": "node --version && npm --version && eslint --version && tsc --version && vite --version && vitest --version",
"build:all": "rimraf dist && npm run lint && npm run build && npm test",
"lint": "eslint src/**/*.ts",
"lint:fix": "eslint src/**/*.ts --fix",
"test:tdd": "vitest -w",
"test": "vitest",
"test:ci": "npm run test",
"cover": "vitest --coverage",
"cover:ci": "npm run cover"
},
"keywords": [
"openapi3",
"ts",
"typescript"
],
"author": "Pedro J. Molina / Metadev",
"license": "MIT",
"dependencies": {
"yaml": "^2.3.4"
},
"devDependencies": {
"@types/node": "^20.10.5",
"@typescript-eslint/eslint-plugin": "^6.15.0",
"@typescript-eslint/parser": "^6.15.0",
"@vitest/coverage-v8": "^1.1.0",
"coveralls": "^3.1.1",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.0",
"prettier": "^3.1.1",
"rimraf": "^5.0.5",
"typescript": "~5.3.3",
"vite": "^5.0.10",
"vitest": "^1.1.0",
"vitest-teamcity-reporter": "^0.2.2"
}
}