-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.96 KB
/
Copy pathpackage.json
File metadata and controls
63 lines (63 loc) · 1.96 KB
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "@owlebot/open-api",
"version": "0.1.0",
"description": "Owlebot open API.",
"author": "Khaaz <khaaz.dev@gmail.com>, Xerstom <xerstomdev@outlook.fr>",
"link": "https://github.com/owlebot/open-api",
"main": "./src/index.js",
"license": "MIT",
"type": "module",
"engines": {
"node": ">=20.9.0"
},
"private": true,
"dependencies": {
"@owlebot/lib": "^0.9.0",
"@owlebot/logger": "^0.4.1",
"@unkey/api": "^0.13.0",
"fern-api": "^0.16.1",
"swagger-ui-express": "^5.0.0",
"tsoa": "^5.1.1"
},
"devDependencies": {
"@owlebot/cli": "^0.10.0",
"@owlebot/eslint-config": "^1.2.0",
"@types/express": "^4.17.17",
"@types/node": "^20.6.0",
"@types/swagger-ui-express": "^4.1.3",
"@typescript-eslint/eslint-plugin": "^6.13.2",
"@typescript-eslint/parser": "^6.13.2",
"eslint": "^8.54.0",
"ts-node": "^10.9.1",
"typescript": "^5.3.2"
},
"scripts": {
"build:packages": "yarn clean:packages && cd specs && fern generate",
"build:spec": "yarn run tsoa spec-and-routes",
"build:ts": "tsc --experimentalDecorators",
"build": "yarn build:spec && yarn build:ts",
"clean:packages": "rm -rf packages/typescript/src/*",
"clean:specs": "rm -rf specs/openapi*",
"clean:ts": "rm -rf build",
"clean": "yarn clean:ts && yarn clean:specs && yarn clean:packages",
"deploy": "deploy",
"docker:build": "docker-build",
"docker:push": "docker-push",
"lint": "eslint src/**/*.ts",
"secret:pull": "secret-pull",
"start:debug": "node --require dotenv/config --loader ./loader.mjs --watch ./src/index.ts --inspect",
"start:prod": "node build/src/index.js",
"start:watch": "node --require dotenv/config --loader ./loader.mjs --watch ./src/index.ts",
"start": "ts-node --esm ./src/index.ts",
"test": "yarn run lint"
},
"repository": {
"type": "git",
"url": "git+https://github.com/owlebot/open-api.git"
},
"bugs": {
"url": "https://github.com/owlebot/open-api/issues"
},
"homepage": "https://github.com/owlebot/open-api#readme",
"keywords": []
}