-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 1016 Bytes
/
Copy pathpackage.json
File metadata and controls
32 lines (32 loc) · 1016 Bytes
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
{
"name": "api-validator",
"version": "1.0.0",
"private": true,
"description": "Browser-based OpenAPI / AsyncAPI / Arazzo / JSON Schema governance tool powered by Spectral.",
"license": "Apache-2.0",
"type": "module",
"scripts": {
"compile-rules": "node tools/compile-rules.mjs",
"dev": "vite",
"build": "vite build && SINGLEFILE=1 vite build && node tools/zip-dist.mjs",
"preview": "vite preview",
"check:rulesets": "tsx tools/check-rulesets.ts",
"check": "npm run check:rulesets"
},
"dependencies": {
"@stoplight/spectral-core": "^1.19.0",
"@stoplight/spectral-formats": "^1.7.0",
"@stoplight/spectral-functions": "^1.9.0",
"@stoplight/spectral-parsers": "^1.0.4",
"@stoplight/spectral-rulesets": "^1.21.0",
"monaco-editor": "^0.52.2",
"yaml": "^2.6.1"
},
"devDependencies": {
"tsx": "^4.22.4",
"typescript": "^5.7.2",
"vite": "^5.4.11",
"vite-plugin-node-polyfills": "^0.22.0",
"vite-plugin-singlefile": "^2.3.3"
}
}