-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.41 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
{
"name": "aspida2openapi",
"version": "0.0.0",
"description": "Convert aspida type definitions into OpenAPI Specification",
"author": "Solufa <[email protected]>",
"license": "MIT",
"main": "dist/index.js",
"bin": "bin/index.js",
"scripts": {
"dev": "npm run build && node bin/index.js",
"build": "npm run rimraf && tsc",
"rimraf": "node -e \"require('fs').existsSync('dist') && require('fs').rmSync('dist', { recursive: true })\"",
"lint": "eslint . && prettier --check \"./**/*.ts\"",
"lint:fix": "eslint . --fix && prettier --write \"./**/*.ts\"",
"test": "vitest run",
"typecheck": "tsc --noEmit"
},
"homepage": "https://github.com/aspida/aspida2openapi#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/aspida/aspida2openapi.git"
},
"files": [
"dist",
"bin"
],
"keywords": [
"typescript",
"aspida",
"openapi"
],
"dependencies": {
"aspida": "^1.14.0",
"openapi-types": "^12.1.3",
"typescript-json-schema": "^0.64.0"
},
"devDependencies": {
"@types/minimist": "^1.2.5",
"@types/node": "^22.3.0",
"eslint": "^9.9.0",
"eslint-config-flat-gitignore": "^0.1.8",
"eslint-config-prettier": "^9.1.0",
"minimist": "^1.2.8",
"prettier": "^3.3.3",
"prettier-plugin-organize-imports": "^4.0.0",
"typescript": "^5.5.4",
"typescript-eslint": "^8.1.0",
"vitest": "^2.0.5"
}
}