54 lines
1.5 KiB
JSON
54 lines
1.5 KiB
JSON
{
|
|
"name": "@add-ideas/toolbox-shell-react",
|
|
"version": "0.2.0",
|
|
"description": "A lightweight React application shell for toolbox-compatible browser applications.",
|
|
"license": "Apache-2.0",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://git.add-ideas.de/zemion/toolbox-sdk.git",
|
|
"directory": "packages/shell-react"
|
|
},
|
|
"homepage": "https://git.add-ideas.de/zemion/toolbox-sdk",
|
|
"keywords": [
|
|
"toolbox",
|
|
"react",
|
|
"application-shell",
|
|
"typescript"
|
|
],
|
|
"type": "module",
|
|
"sideEffects": [
|
|
"**/*.css"
|
|
],
|
|
"files": [
|
|
"dist",
|
|
"README.md",
|
|
"LICENSE"
|
|
],
|
|
"exports": {
|
|
".": {
|
|
"types": "./dist/index.d.ts",
|
|
"import": "./dist/index.js"
|
|
},
|
|
"./styles.css": "./dist/styles.css",
|
|
"./package.json": "./package.json"
|
|
},
|
|
"types": "./dist/index.d.ts",
|
|
"peerDependencies": {
|
|
"react": ">=18 <20",
|
|
"react-dom": ">=18 <20"
|
|
},
|
|
"dependencies": {
|
|
"@add-ideas/toolbox-contract": "0.2.0"
|
|
},
|
|
"scripts": {
|
|
"build": "tsc -p tsconfig.build.json && node -e \"const fs=require('node:fs');fs.copyFileSync('src/styles.css','dist/styles.css');fs.copyFileSync('../../LICENSE','LICENSE')\"",
|
|
"clean": "node -e \"require('node:fs').rmSync('dist', { recursive: true, force: true })\"",
|
|
"prepack": "npm run build",
|
|
"typecheck": "tsc -p tsconfig.json --noEmit"
|
|
},
|
|
"publishConfig": {
|
|
"access": "public",
|
|
"registry": "https://git.add-ideas.de/api/packages/zemion/npm/"
|
|
}
|
|
}
|