feat: generator updates

This commit is contained in:
2023-11-07 17:14:58 +01:00
parent 9ef77ab3ed
commit 8a421cb2fb
51 changed files with 1385 additions and 1241 deletions

View File

@@ -5,8 +5,8 @@
"type": "module",
"license": "GPL-3.0-only",
"author": "Thea Schöbl <dev@theaninova.de>",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"main": "./src/index.js",
"types": "./src/types.d.ts",
"files": [
"app.js",
"lib",
@@ -15,20 +15,19 @@
"CHANGELOG.md"
],
"scripts": {
"build": "tsup-node --dts",
"format": "prettier . -c --ignore-path ../../.gitignore",
"format:fix": "prettier --write . --ignore-path ../../.gitignore",
"lint": "eslint --ext .ts src/",
"lint:fix": "eslint --ext .ts src/",
"lint": "tsc --noEmit && eslint --ext .js src/",
"lint:fix": "eslint --ext .js src/",
"test": "c8 mocha"
},
"dependencies": {
"ajv": "8.12.0",
"ajv-formats": "2.1.1",
"@elastic/elasticsearch": "8.10.0",
"@openstapps/json-schema-generator": "workspace:*",
"@openstapps/tsup-plugin": "workspace:*",
"@types/json-schema": "7.0.14"
"@types/json-schema": "7.0.14",
"ajv": "8.12.0",
"ajv-formats": "2.1.1"
},
"devDependencies": {
"@openstapps/eslint-config": "workspace:*",
@@ -47,7 +46,7 @@
"mocha-junit-reporter": "2.2.0",
"nock": "13.3.1",
"ts-node": "10.9.1",
"tsup": "6.7.0",
"tsup": "7.2.0",
"typedoc": "0.24.8",
"typescript": "5.1.6"
},