-
Notifications
You must be signed in to change notification settings - Fork 63
/
Copy pathpackage.json
77 lines (77 loc) · 2.31 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
{
"name": "openapi3-ts",
"version": "4.4.0",
"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",
"publish": "npm run build:all && npm publish ."
},
"keywords": [
"openapi3",
"ts",
"typescript"
],
"author": "Pedro J. Molina / Metadev",
"license": "MIT",
"dependencies": {
"yaml": "^2.5.0"
},
"devDependencies": {
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.9.1",
"@types/node": "^22.5.0",
"@typescript-eslint/eslint-plugin": "^8.3.0",
"@typescript-eslint/parser": "^8.3.0",
"@vitest/coverage-v8": "^2.0.5",
"coveralls": "^3.1.1",
"eslint": "^9.9.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"prettier": "^3.3.3",
"rimraf": "^6.0.1",
"typescript": "~5.5.4",
"vite": "^5.4.2",
"vitest": "^2.0.5",
"vitest-teamcity-reporter": "^0.3.1"
},
"files": [
"dist",
"*.md",
"oas30.d.ts",
"oas31.d.ts"
]
}