fixed some schemas, packed it as a npm package

This commit is contained in:
yusing
2025-01-24 10:42:50 +08:00
parent 9936b3af5b
commit 4c311fd78e
17 changed files with 634 additions and 3955 deletions

24
package.json Normal file
View File

@@ -0,0 +1,24 @@
{
"name": "godoxy-schemas",
"version": "0.9.0",
"repository": {
"type": "git",
"url": "https://github.com/yusing/go-proxy"
},
"files": [
"schemas/",
"README.md",
"LICENSE"
],
"devDependencies": {
"prettier": "^3.4.2",
"typescript-json-schema": "^0.65.1"
},
"displayName": "GoDoxy Types",
"packageManager": "bun@1.2.0",
"publisher": "yusing",
"scripts": {
"gen-schema": "make gen-schema",
"format:write": "prettier --write \"schemas/**/*.ts\" --cache"
}
}