66 lines
2.4 KiB
JSON
66 lines
2.4 KiB
JSON
{
|
|
"name": "xsl-tools",
|
|
"version": "0.3.2",
|
|
"private": true,
|
|
"type": "module",
|
|
"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",
|
|
"lint": "eslint .",
|
|
"format": "prettier --write .",
|
|
"format:check": "prettier --check .",
|
|
"test": "vitest run --environment jsdom",
|
|
"test:watch": "vitest --environment jsdom",
|
|
"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",
|
|
"@codemirror/search": "^6.5.10",
|
|
"@codemirror/state": "^6.5.2",
|
|
"@codemirror/view": "^6.38.3",
|
|
"bootstrap-icons": "^1.11.3",
|
|
"codemirror": "^6.0.1",
|
|
"react": "^19.2.6",
|
|
"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",
|
|
"@types/node": "^25.8.0",
|
|
"@types/react": "^19.2.14",
|
|
"@types/react-dom": "^19.2.3",
|
|
"@vitejs/plugin-react": "^6.0.2",
|
|
"eslint": "^10.4.0",
|
|
"eslint-config-prettier": "^10.1.8",
|
|
"eslint-plugin-react-hooks": "^7.1.1",
|
|
"eslint-plugin-react-refresh": "^0.5.2",
|
|
"globals": "^17.6.0",
|
|
"jsdom": "^29.1.1",
|
|
"prettier": "^3.8.3",
|
|
"typescript": "^6.0.3",
|
|
"typescript-eslint": "^8.59.3",
|
|
"vite": "^8.0.13",
|
|
"vitest": "^4.1.6"
|
|
}
|
|
}
|