generated from cloudoperators/repository-template
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(doop): make app public, remove stars from peerDependencies and so…
…me typos (#130) * fix(doop): make app public, remove stars from peerDependencies and some typos * added lock file
- Loading branch information
Showing
2 changed files
with
28 additions
and
6 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "doop", | ||
"version": "2.2.3", | ||
"version": "2.2.4", | ||
"author": "UI-Team", | ||
"contributors": [ | ||
"Andreas Pfau", | ||
|
@@ -10,7 +10,7 @@ | |
"source": "src/index.js", | ||
"module": "build/index.js", | ||
"license": "Apache-2.0", | ||
"private": true, | ||
"private": false, | ||
"devDependencies": { | ||
"@babel/core": "^7.20.2", | ||
"@babel/preset-env": "^7.20.2", | ||
|
@@ -49,6 +49,17 @@ | |
"utils": "https://assets.juno.global.cloud.sap/libs/[email protected]/package.tgz", | ||
"zustand": "^4.5.2" | ||
}, | ||
"peerDependencies": { | ||
"@tanstack/react-query": "^5.0.0", | ||
"juno-ui-components": "https://assets.juno.global.cloud.sap/libs/[email protected]/package.tgz", | ||
"luxon": "^3.0.0", | ||
"messages-provider": "https://assets.juno.global.cloud.sap/libs/[email protected]/package.tgz", | ||
"prop-types": "^15.8.1", | ||
"react": "18.2.0", | ||
"react-dom": "18.2.0", | ||
"url-state-provider": "https://assets.juno.global.cloud.sap/libs/[email protected]/package.tgz", | ||
"zustand": "^4.5.2" | ||
}, | ||
"scripts": { | ||
"test": "jest", | ||
"start": "NODE_ENV=development node esbuild.config.js --serve --watch", | ||
|
@@ -78,12 +89,12 @@ | |
"embedded": { | ||
"value": "true", | ||
"type": "optional", | ||
"description": "Set to true if app is to be embedded in another existing app or page, like e.g. Elektra. If set to true the app won't render a page header/footer and instead render only the content. The default value is false." | ||
"description": "Set to true if app is to be embedded in another existing app or page. If set to true the app won't render a page header/footer and instead render only the content. The default value is false." | ||
}, | ||
"isMock": { | ||
"value": "false", | ||
"type": "optional", | ||
"description": "use mocked data (only in dev)" | ||
"description": "Use mocked data (only in dev)" | ||
}, | ||
"showDebugSeverities": { | ||
"value": "false", | ||
|