{ "name": "@openstapps/minimal-plugin", "description": "Minimal Plugin", "version": "2.1.0", "type": "module", "license": "GPL-3.0-only", "author": "Thea Schöbl", "contributors": [ "Jovan Krunić ", "Rainer Killinger " ], "bin": "app.js", "scripts": { "build": "tsup --dts", "format": "prettier .", "format:fix": "prettier --write .", "lint": "eslint --ext .ts src/", "lint:fix": "eslint --fix --ext .ts src/", "start": "node lib/cli.js" }, "dependencies": { "@openstapps/api": "workspace:*", "@openstapps/core": "workspace:*", "@openstapps/core-tools": "workspace:*", "@openstapps/logger": "workspace:*", "commander": "10.0.0", "express": "4.18.2", "ts-node": "10.9.1" }, "devDependencies": { "@openstapps/eslint-config": "workspace:*", "@openstapps/prettier-config": "workspace:*", "@openstapps/tsconfig": "workspace:*", "@types/express": "4.17.16", "@types/node": "18.15.3", "tsup": "6.7.0", "typedoc": "0.23.28", "typescript": "4.8.4" }, "tsup": { "entry": [ "src/app.ts" ], "sourcemap": true, "clean": true, "format": "esm", "outDir": "lib" }, "prettier": "@openstapps/prettier-config", "eslintConfig": { "extends": [ "@openstapps" ] } }