Files
helper-tools/package.json
T
zemion 6c763fcb5a
Verify / verify (push) Canceled after 0s
Release Helper Tools 0.2.0
2026-09-02 01:01:56 +02:00

94 lines
3.2 KiB
JSON

{
"name": "@add-ideas/toolbox-helpers",
"version": "0.2.0",
"description": "Bounded, local-first TypeScript helpers and browser calculators for the add·ideas Toolbox.",
"license": "GPL-3.0-or-later",
"author": "Albrecht Degering",
"repository": {
"type": "git",
"url": "git+https://git.add-ideas.de/lotobo/helper-tools.git"
},
"homepage": "https://git.add-ideas.de/lotobo/helper-tools",
"bugs": {
"url": "https://git.add-ideas.de/lotobo/helper-tools/issues"
},
"publishConfig": {
"registry": "https://git.add-ideas.de/api/packages/lotobo/npm/",
"access": "public"
},
"type": "module",
"sideEffects": false,
"main": "./lib-dist/index.js",
"module": "./lib-dist/index.js",
"types": "./lib-dist/types/index.d.ts",
"exports": {
".": {
"types": "./lib-dist/types/index.d.ts",
"import": "./lib-dist/index.js"
}
},
"files": [
"lib-dist/",
"LICENSE",
"README.md",
"SOURCE.md",
"CHANGELOG.md",
"SECURITY.md",
"THIRD_PARTY_NOTICES.md",
"docs/API.md"
],
"engines": {
"node": ">=22"
},
"scripts": {
"predev": "npm run manifest:generate",
"dev": "vite",
"prebuild": "npm run release:prepare && npm run manifest:generate",
"build": "tsc -b && vite build && npm run build:library",
"build:library": "vite build --config vite.lib.config.ts && tsc -p tsconfig.lib.json --emitDeclarationOnly",
"preview": "vite preview",
"typecheck": "tsc -b --pretty false",
"lint": "eslint . --max-warnings=0",
"format": "prettier --write .",
"format:check": "prettier --check .",
"test": "vitest run",
"test:watch": "vitest",
"test:browser": "playwright test",
"manifest:generate": "node scripts/generate-toolbox-manifest.mjs",
"manifest:check": "node scripts/generate-toolbox-manifest.mjs --check",
"release:prepare": "node scripts/prepare-release-files.mjs",
"toolbox:check": "toolbox-check dist",
"package:release": "node scripts/package-release.mjs",
"package:library": "node scripts/package-library.mjs",
"check": "npm run manifest:check && npm run typecheck && npm run lint && npm run format:check && npm run test && npm run build && npm run toolbox:check",
"release:artifact": "npm run check && npm run test:browser && npm run package:release -- --force && npm run package:library -- --force"
},
"devDependencies": {
"@add-ideas/toolbox-contract": "0.3.0",
"@add-ideas/toolbox-shell-react": "0.3.0",
"@add-ideas/toolbox-testkit": "0.3.0",
"@eslint/js": "10.0.1",
"@playwright/test": "1.62.1",
"@testing-library/jest-dom": "6.9.1",
"@testing-library/react": "16.3.2",
"@testing-library/user-event": "14.6.1",
"@types/node": "25.9.5",
"@types/react": "19.2.17",
"@types/react-dom": "19.2.5",
"@vitejs/plugin-react": "6.0.3",
"eslint": "10.7.0",
"eslint-plugin-react-hooks": "7.1.1",
"eslint-plugin-react-refresh": "0.5.2",
"globals": "17.7.0",
"jsdom": "29.1.1",
"prettier": "3.9.5",
"react": "19.2.8",
"react-dom": "19.2.8",
"typescript": "6.0.3",
"typescript-eslint": "8.64.0",
"vite": "8.2.2",
"vitest": "4.1.11"
},
"packageManager": "npm@11.17.0"
}