feat: integrate XSLT Tools with toolbox portal

This commit is contained in:
2026-07-20 18:16:18 +02:00
parent 3193cc395c
commit 8f8a59e76c
36 changed files with 1737 additions and 243 deletions

View File

@@ -3,9 +3,12 @@
"version": "0.3.2",
"private": true,
"type": "module",
"description": "Browser-only XSLT workbench for local XML/XSLT transformations.",
"license": "AGPL-3.0-only",
"description": "Browser-based XSLT workbench with explicit executable-stylesheet trust controls.",
"scripts": {
"predev": "npm run manifest:generate",
"dev": "vite",
"prebuild": "npm run manifest:generate",
"build": "vite build",
"preview": "vite preview",
"typecheck": "tsc --noEmit",
@@ -14,11 +17,19 @@
"format:check": "prettier --check .",
"test": "vitest run --environment jsdom",
"test:watch": "vitest --environment jsdom",
"check": "npm run typecheck && npm run lint && npm run test && npm run build",
"manifest:generate": "node --experimental-strip-types scripts/generate-toolbox-manifest.mjs",
"manifest:check": "node --experimental-strip-types scripts/generate-toolbox-manifest.mjs --check",
"smoke:static": "node scripts/smoke-static-build.mjs",
"smoke:toolbox": "toolbox-check dist",
"release:artifact": "npm run check && node scripts/package-release.mjs",
"release": "npm run release:artifact",
"check": "npm run manifest:check && npm run typecheck && npm run lint && npm run test && npm run build && npm run smoke:static && npm run smoke:toolbox",
"lint:fix": "eslint . --fix",
"clean": "rm -rf dist node_modules/.vite coverage"
},
"dependencies": {
"@add-ideas/toolbox-contract": "^0.1.0",
"@add-ideas/toolbox-shell-react": "^0.1.0",
"@codemirror/commands": "^6.8.1",
"@codemirror/lang-xml": "^6.1.0",
"@codemirror/lint": "^6.8.5",
@@ -31,6 +42,7 @@
"react-dom": "^19.2.6"
},
"devDependencies": {
"@add-ideas/toolbox-testkit": "^0.1.0",
"@eslint/js": "^10.0.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",