forked from directus/openapi
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.14 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.14 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
{
"name": "@directus/openapi",
"private": false,
"version": "0.1.15",
"description": "OpenAPI Specification of the Directus API",
"homepage": "https://directus.io",
"repository": {
"type": "git",
"url": "https://github.com/directus/openapi.git"
},
"funding": "https://github.com/directus/directus?sponsor=1",
"exports": {
".": {
"types": "./index.d.ts",
"import": "./dist/index.js"
}
},
"files": [
"dist",
"index.d.ts"
],
"types": "index.d.ts",
"main": "dist/index.js",
"scripts": {
"dev": "nodemon --watch './openapi/**/*.yaml' --exec 'redocly bundle ./openapi/index.yaml -o ./dist/index.yaml && pnpm scalar serve ./dist/oas.yaml -p 5001' --ext yaml",
"build": "redocly bundle ./openapi/index.yaml -o ./dist/oas.yaml && redocly bundle ./openapi/index.yaml -o ./dist/oas.json --ext json && jiti scripts/build-js.ts",
"lint": "redocly lint --max-problems=1000 ./dist/oas.yaml",
"fix-casing": "npx tsx scripts/fix-casing.ts"
},
"license": "MIT",
"devDependencies": {
"@redocly/cli": "1.27.1",
"@scalar/cli": "0.2.283",
"@types/node": "22.10.5",
"jiti": "2.4.2",
"nodemon": "3.1.9",
"openapi3-ts": "4.4.0"
}
}