forked from aspida/openapi2aspida
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 2.13 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
{
"name": "@luco-inc/openapi2aspida",
"version": "0.0.3",
"description": "Convert OpenAPI 3.1 definitions into aspida",
"author": "Solufa <[email protected]>",
"license": "MIT",
"main": "dist/index.js",
"bin": "bin/index.js",
"scripts": {
"dev": "pnpm run build && node samples/rimraf.js && node bin/index.js",
"build": "pnpm run rimraf && tsc",
"rimraf": "node -e 'fs.rmSync(`dist`, {recursive:true, force:true})'",
"lint": "eslint --ext .ts . && prettier --check \"./**/*.ts\"",
"lint:fix": "eslint --ext .ts . --fix && prettier --write \"./**/*.ts\"",
"test": "jest",
"typecheck": "tsc --noEmit",
"prepare": "mkdir -p dist && pnpm run build"
},
"homepage": "https://github.com/luco-inc/openapi2aspida#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/luco-inc/openapi2aspida.git"
},
"bugs": {
"url": "https://github.com/luco-inc/openapi2aspida/issues"
},
"files": [
"dist",
"bin"
],
"keywords": [
"typescript",
"aspida",
"openapi",
"swagger"
],
"dependencies": {
"@apidevtools/swagger-parser": "10.1.0",
"aspida": "1.14.0",
"js-yaml": "4.1.0",
"openapi-types": "12.1.3",
"swagger2openapi": "7.0.8"
},
"devDependencies": {
"@types/jest": "29.5.12",
"@types/js-yaml": "4.0.9",
"@types/minimist": "1.2.5",
"@typescript-eslint/eslint-plugin": "7.16.0",
"@typescript-eslint/parser": "7.16.0",
"eslint": "8.57.0",
"eslint-config-prettier": "9.1.0",
"eslint-config-standard": "17.1.0",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-jest": "28.6.0",
"eslint-plugin-n": "16.6.2",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-promise": "6.4.0",
"eslint-plugin-standard": "5.0.0",
"jest": "29.7.0",
"minimist": "1.2.8",
"np": "10.0.6",
"prettier": "3.3.2",
"prettier-plugin-organize-imports": "4.0.0",
"ts-jest": "29.2.2",
"ts-node": "10.9.2",
"typescript": "5.5.3"
},
"packageManager": "[email protected]+sha512.140036830124618d624a2187b50d04289d5a087f326c9edfc0ccd733d76c4f52c3a313d4fc148794a2a9d81553016004e6742e8cf850670268a7387fc220c903"
}