-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
30 lines (30 loc) · 1.56 KB
/
package.json
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
{
"name": "kadok",
"version": "0.1.0",
"description": "Kadok is a bot developed for the Discord Guild \"Les petits pedestres\". It aims to provide fun and useful functionnalities for the Guild Members.",
"main": "main.go",
"repository": "https://gitlab.beyond-undefined.fr/rouquette/kadok",
"author": "Victor Rouquette <victor@rouquette.me>",
"license": "GPL-3.0",
"private": false,
"devDependencies": {
"@commitlint/cli": "^17.0.3",
"@commitlint/config-conventional": "^17.0.3",
"@redocly/cli": "^1.0.0-beta.107",
"@stoplight/spectral-cli": "^6.5.0",
"husky": "^8.0.1",
"pinst": "^3.0.0"
},
"scripts": {
"oas:dev:watch": "redocly preview-docs --config .redocly.yaml api/src/openapi.yaml",
"oas:lint:redocly": "redocly lint --config .redocly.yaml --format stylish api/src/openapi.yaml",
"oas:lint:spectral": "spectral lint --ruleset .spectral.yaml --format stylish api/generated/openapi.yaml",
"oas:bundle": "redocly bundle --config .redocly.yaml --ext json --output api/generated/openapi.json api/src/openapi.yaml",
"oas:render": "redoc-cli build --disableGoogleFont -o api/generated/openapi.html api/generated/openapi.json",
"oas:codegen:types": "oapi-codegen --config api-codegen.types.yaml api/generated/openapi.json",
"oas:codegen:server": "oapi-codegen --config api-codegen.server.yaml api/generated/openapi.json",
"postinstall": "husky install githooks",
"prepack": "pinst --disable",
"postpack": "pinst --enable"
}
}