-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
23 lines (23 loc) · 804 Bytes
/
package.json
File metadata and controls
23 lines (23 loc) · 804 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"name": "aep-typespec",
"version": "0.1.0",
"type": "module",
"private": true,
"packageManager": "pnpm@9.0.0",
"scripts": {
"build": "tsp compile .",
"clean": "rm -rf dist docs",
"lint:aep": "pnpx @stoplight/spectral-cli lint -r https://raw.githubusercontent.com/aep-dev/aep-openapi-linter/main/spectral.yaml tsp-output/schema/openapi.yaml",
"swagger": "docker run --rm -p 8080:8080 -e SWAGGER_JSON=/openapi/openapi.yml -v $(pwd)/tsp-output/schema/openapi.yaml:/openapi/openapi.yml swaggerapi/swagger-ui"
},
"dependencies": {
"@typespec/compiler": "latest",
"@typespec/http": "latest",
"@typespec/openapi": "^1.3.0",
"@typespec/openapi3": "latest",
"@typespec/rest": "latest"
},
"devDependencies": {
"@stoplight/spectral-cli": "^6.15.0"
}
}