-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.26 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.26 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
{
"name": "@aura-stack/openapi-root",
"version": "0.0.0",
"private": true,
"type": "module",
"description": "An open-source OpenAPI specification generator for TypeScript.",
"scripts": {
"dev": "turbo run dev",
"build": "turbo run build",
"format": "turbo run format format:root --parallel",
"format:root": "oxfmt \"!packages\" \"!configs\"",
"format:check": "oxfmt --check",
"lint": "oxlint",
"lint:fix": "oxlint --fix",
"type-check": "turbo run type-check --parallel"
},
"repository": {
"type": "git",
"url": "git+https://github.com/aura-stack-ts/openapi.git"
},
"bugs": "https://github.com/aura-stack-ts/openapi/issues",
"homepage": "https://github.com/aura-stack-ts/openapi#readme",
"keywords": [
"openapi",
"swagger",
"api",
"aura",
"aura stack",
"router",
"typescript",
"nodejs"
],
"author": "Aura Stack <aurastackjs@gmail.com> | Hernan Alvarado <halvaradop.dev@gmail.com>",
"license": "MIT",
"devDependencies": {
"@types/bun": "^1.3.9",
"@types/node": "^24.9.2",
"oxfmt": "^0.41.0",
"oxlint": "^1.56.0",
"tsdown": "^0.21.8",
"turbo": "^2.9.10",
"typescript": "^5.6.3"
},
"packageManager": "pnpm@10.15.0",
"engines": {
"node": ">=22"
}
}