Files
directus/packages/specs/package.json
Rijk van Zanten 40f94e6907 Patch Tuesday 🐸 (#16875)
* Update versions

* Fix usage of fullcalendar

* Patch Tuesday Additions 🐸🐸 (#16878)

* Interop default in vitest

* Update exif-reader

* remove deprecated @types/pino

* remove old "grant" package type shim

* Small clean-up of dependencies (#16576)

* Remove outdated type deps & update concurrently

* fix lock file

Co-authored-by: Azri Kahar <42867097+azrikahar@users.noreply.github.com>

Co-authored-by: Pascal Jufer <pascal-jufer@bluewin.ch>
Co-authored-by: Azri Kahar <42867097+azrikahar@users.noreply.github.com>
2022-12-23 10:45:15 -05:00

56 lines
1.2 KiB
JSON

{
"name": "@directus/specs",
"version": "9.22.1",
"description": "OpenAPI Specification of the Directus API",
"homepage": "https://directus.io",
"bugs": {
"url": "https://github.com/directus/directus/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/directus/directus.git",
"directory": "packages/specs"
},
"license": "GPL-3.0",
"author": "Nils Twelker",
"exports": {
".": "./index.js",
"./package.json": "./package.json"
},
"main": "index.js",
"files": [
"dist",
"index.d.ts",
"index.js"
],
"scripts": {
"build": "swagger-cli bundle src/openapi.yaml -o dist/openapi.json",
"build:deref": "swagger-cli bundle src/openapi.yaml -o dist/openapi-deref.json --dereference",
"dev": "npm-watch build",
"ui:watch": "swagger-ui-watcher src/openapi.yaml",
"validate": "swagger-cli validate src/openapi.yaml"
},
"dependencies": {
"openapi3-ts": "3.1.2"
},
"devDependencies": {
"npm-watch": "0.11.0",
"openapi-types": "12.1.0",
"swagger-cli": "4.0.4",
"swagger-ui-watcher": "2.1.13"
},
"publishConfig": {
"access": "public"
},
"watch": {
"build": {
"patterns": [
"src"
],
"extensions": "yaml",
"quiet": true,
"silent": true
}
}
}