-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
119 lines (119 loc) · 3.22 KB
/
package.json
File metadata and controls
119 lines (119 loc) · 3.22 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
{
"name": "@tryloop/oats",
"version": "2.2.28",
"description": "🌾 OATS - OpenAPI TypeScript Sync. The missing link between your OpenAPI specs and TypeScript applications. Automatically watch, generate, and sync TypeScript clients from your API definitions.",
"keywords": [
"oats",
"oatsjs",
"openapi",
"swagger",
"typescript",
"api",
"client",
"generator",
"sync",
"watch",
"microservices",
"development",
"orchestrator",
"monorepo",
"developer-tools",
"dx",
"automation",
"tsoa",
"openapi-typescript",
"api-codegen",
"type-generation"
],
"author": "Hari Shekhar",
"license": "MIT",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"bin": {
"oats": "./bin/oats"
},
"files": [
"bin/",
"dist/",
"schema/",
"README.md",
"LICENSE",
"CHANGELOG.md"
],
"scripts": {
"clean": "rimraf dist coverage",
"build": "yarn clean && tsc && yarn postbuild",
"postbuild": "node scripts/make-executable.js",
"build:watch": "tsc --watch",
"dev": "tsx watch src/bin/oats.ts",
"test": "jest --coverage",
"test:watch": "jest --watch",
"lint": "eslint src/ --ext .ts,.tsx",
"lint:fix": "yarn lint -- --fix",
"format": "prettier --write \"src/**/*.{ts,tsx,js,json}\"",
"format:check": "prettier --check \"src/**/*.{ts,tsx,js,json}\"",
"typecheck": "tsc --noEmit",
"prepare": "husky && yarn build",
"publish:auto": "node scripts/publish.js",
"release": "yarn publish:auto",
"version:update": "node scripts/update-version.js"
},
"dependencies": {
"chalk": "^5.3.0",
"chokidar": "^4.0.0",
"commander": "^12.0.0",
"detect-port": "^1.5.1",
"esbuild": "^0.24.2",
"execa": "^8.0.1",
"find-up": "^7.0.0",
"glob": "^10.3.0",
"@inquirer/prompts": "^5.0.0",
"joi": "^17.12.0",
"lodash.debounce": "^4.0.8",
"node-notifier": "^10.0.1",
"ora": "^8.2.0"
},
"devDependencies": {
"@types/detect-port": "^2.0.0",
"@types/jest": "^29.5.0",
"@types/lodash.debounce": "^4.0.9",
"@types/node": "^20.11.0",
"@types/node-notifier": "^8.0.0",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.0",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-jest": "^27.6.0",
"eslint-plugin-prettier": "^5.1.0",
"husky": "^9.1.7",
"jest": "^29.7.0",
"prettier": "^3.2.5",
"rimraf": "^5.0.5",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.0",
"tsx": "^4.7.0",
"typescript": "5.3.3"
},
"engines": {
"node": ">=18.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/loopkitchen/oats.git"
},
"bugs": {
"url": "https://github.com/loopkitchen/oats/issues"
},
"homepage": "https://github.com/loopkitchen/oats#readme",
"packageManager": "yarn@1.22.22+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e",
"publishConfig": {
"access": "public"
},
"resolutions": {
"signal-exit": "^4.1.0",
"onetime": "^6.0.0"
}
}