-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.52 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.52 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
{
"name": "@jitaspace/cli",
"version": "1.1.1",
"description": "JitaSpace CLI utilities",
"files": [
"dist"
],
"type": "module",
"repository": "https://github.com/joaomlneto/jitaspace.git",
"author": "João Neto <joao@jita.space>",
"license": "MIT",
"scripts": {
"build": "tsc --noEmit && esbuild index.ts --bundle --platform=node --format=cjs --outfile=./dist/index.cjs",
"generate": "mkdir -p out && ts-node index.ts generate",
"prepublish": "tsc",
"validate": "ts-node index.ts validate"
},
"devDependencies": {
"@asteasolutions/zod-to-openapi": "^4.7.0",
"@commander-js/extra-typings": "^14.0.0",
"@jitaspace/eslint-config": "workspace:*",
"@jitaspace/prettier-config": "workspace:*",
"@jitaspace/tsconfig": "workspace:*",
"@jsonhero/schema-infer": "^0.1.5",
"@openapi-contrib/json-schema-to-openapi-schema": "^4.3.1",
"@types/async": "^3.2.20",
"@types/cli-progress": "^3.11.0",
"@types/figlet": "^1.5.6",
"@types/js-yaml": "^4.0.5",
"@types/node": "^24.10.13",
"ansi-colors": "^4.1.3",
"async": "^3.2.4",
"change-case": "^5.4.4",
"checksum": "^1.0.0",
"cli-progress": "^3.12.0",
"commander": "^14.0.3",
"figlet": "^1.6.0",
"inquirer": "^9.2.2",
"js-yaml": "^4.1.0",
"js2schema": "^1.0.8",
"node-html-parser": "^6.1.5",
"node-stream-zip": "^1.15.0",
"openapi-types": "^12.1.3",
"ts-node": "^10.9.1",
"tslib": "^2.5.0",
"typescript": "^5.8.3",
"yaml": "^2.1.3",
"zod": "^3.21.4"
}
}