-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
22 lines (22 loc) · 797 Bytes
/
Copy pathpackage.json
File metadata and controls
22 lines (22 loc) · 797 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
"name": "api-documentation",
"private": true,
"version": "0.1.0",
"type": "module",
"description": "Standalone, beautiful documentation for any APIs.json — drop the viewer next to an apis.json (or bundle it into a single HTML file) and get rich, OpenAPI-quality docs for everything the file covers, including inline OpenAPI and Arazzo data properties. Supports APIs.json versions 0.11 through 0.21.",
"scripts": {
"dev": "vite",
"build": "vite build && node tools/standalone.mjs && node tools/build-examples.mjs",
"preview": "vite preview",
"typecheck": "tsc --noEmit",
"bundle": "node tools/bundle.mjs"
},
"license": "Apache-2.0",
"devDependencies": {
"typescript": "^5.7.2",
"vite": "^5.4.11"
},
"dependencies": {
"yaml": "^2.6.1"
}
}