18 lines
479 B
JSON
18 lines
479 B
JSON
{
|
|
"name": "api-types",
|
|
"version": "0.0.0",
|
|
"description": "Types shared between Supabase apps and packages",
|
|
"main": "./index.ts",
|
|
"types": "./index.ts",
|
|
"scripts": {
|
|
"clean": "rimraf node_modules",
|
|
"codegen": "openapi-typescript http://localhost:8080/api-json -o types/api.d.ts --alphabetize && prettier --write types/api.d.ts"
|
|
},
|
|
"author": "",
|
|
"license": "MIT",
|
|
"devDependencies": {
|
|
"openapi-typescript": "^6.7.4",
|
|
"prettier": "3.2.4"
|
|
}
|
|
}
|