Files
wehub-resource-sync a9cd7750f4
CI / detect-changes (push) Waiting to run
CI / build (push) Waiting to run
UI v2 CI / E2E (Mocked) (push) Blocked by required conditions
UI v2 Integration CI / E2E (Integration) (push) Waiting to run
CI / unit-test (push) Blocked by required conditions
CI / test-harness (push) Waiting to run
CI / generate-e2e-matrix (push) Waiting to run
CI / e2e (push) Blocked by required conditions
CI / build-ui (push) Waiting to run
Publish docs via GitHub Pages / Deploy docs (push) Waiting to run
Release Drafter / update_release_draft (push) Waiting to run
UI v2 CI / Lint, Format & Test (push) Waiting to run
chore: import upstream snapshot with attribution
2026-07-13 12:37:56 +08:00

202 lines
6.6 KiB
JSON

{
"name": "conductor-ui",
"version": "0.0.0",
"description": "Open Source Conductor UI - Core components, pages, and plugin infrastructure",
"type": "module",
"main": "./dist/conductor-ui.js",
"module": "./dist/conductor-ui.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/conductor-ui.js",
"types": "./dist/index.d.ts"
},
"./styles.css": "./dist/style.css",
"./global.css": "./dist/global.css"
},
"files": [
"dist"
],
"scripts": {
"dev": "vite",
"build": "vite build",
"build:lib": "vite build --mode lib && cp src/index.css dist/global.css",
"build:all": "vite build && vite build --mode lib",
"preview": "vite preview",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest --watch",
"test:coverage": "vitest run --coverage",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"test:e2e:headed": "playwright test --headed",
"test:e2e:debug": "playwright test --debug",
"test:e2e:integration": "playwright test --config playwright.integration.config.ts",
"test:e2e:integration:ui": "playwright test --config playwright.integration.config.ts --ui",
"test:e2e:integration:headed": "playwright test --config playwright.integration.config.ts --headed",
"test:e2e:snapshots": "docker compose -f docker-compose.snapshots.yml run --rm playwright",
"test:e2e:snapshots:update": "PLAYWRIGHT_FLAGS=--update-snapshots docker compose -f docker-compose.snapshots.yml run --rm playwright",
"lint": "eslint 'src/**/*.{js,jsx,ts,tsx}' --quiet",
"lint:fix": "eslint 'src/**/*.{js,jsx,ts,tsx}' --fix",
"prettier:write": "prettier --write .",
"prettier:check": "prettier --check .",
"prepare": "husky"
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx}": [
"eslint --quiet --fix",
"prettier --write"
],
"src/**/*.{css,scss,json,md}": [
"prettier --write"
]
},
"peerDependencies": {
"@dnd-kit/core": "^6.1.0",
"@dnd-kit/sortable": "^8.0.0",
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.10.8",
"@hookform/resolvers": "^5.2.1",
"@jsonforms/core": "^3.6.0",
"@jsonforms/material-renderers": "^3.6.0",
"@jsonforms/react": "^3.6.0",
"@monaco-editor/react": "^4.7.0",
"@mui/icons-material": "^7.3.1",
"@mui/material": "^7.3.1",
"@mui/system": "^7.3.1",
"@mui/x-date-pickers": "^6.16",
"monaco-editor": "^0.55.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hook-form": "^7.72.1",
"react-router": "^7.14.1",
"react-router-dom": "^7.14.1",
"react-router-use-location-state": "^3.1.2",
"styled-components": "^5.3.8",
"yup": "^1.7.0"
},
"dependencies": {
"@datasert/cronjs-matcher": "^1.4.0",
"@growthbook/growthbook": "^1.5.1",
"@growthbook/growthbook-react": "^1.5.1",
"@mui/types": "^9.0.0",
"@phosphor-icons/react": "^2.1.10",
"@tanstack/react-virtual": "^3.14.2",
"@use-gesture/core": "^10.3.1",
"@use-gesture/react": "^10.2.21",
"@xstate/inspect": "^0.8.0",
"@xstate/react": "^3.2.1",
"ajv": "^8.17.1",
"ajv-errors": "^3.0.0",
"ajv-formats": "^3.0.1",
"autosuggest-highlight": "^3.3.4",
"classnames": "^2.3.1",
"color": "^4.2.3",
"cron-validate": "^1.4.3",
"cronstrue": "^2.32.0",
"date-fns": "^2.29.3",
"date-fns-tz": "^2.0.0",
"dom-to-image": "^2.6.0",
"fast-deep-equal": "^3.1.3",
"fuse.js": "^6.6.2",
"highlight.js": "^11.11.1",
"jotai": "^2.19.1",
"lodash": "^4.18.1",
"mock-json-schema": "^1.1.1",
"monaco-languages-jq": "^1.0.0",
"prismjs": "^1.27.0",
"prop-types": "^15.7.2",
"qs": "^6.15.1",
"react-container-query": "^0.12.0",
"react-data-table-component": "^7.5.3",
"react-datepicker": "^6.1.0",
"react-helmet": "^6.1.0",
"react-highlight": "^0.15.0",
"react-hotkeys-hook": "^4.4.1",
"react-markdown": "10.1.0",
"react-number-format": "^5.4.5",
"react-player": "^2.16.0",
"react-query": "^3.39.2",
"react-vis-timeline": "^2.0.3",
"reaflow": "5.1.2",
"recharts": "^2.10.3",
"remark-gfm": "^4.0.0",
"ts-key-enum": "^2.0.12",
"url-parse": "^1.5.9",
"uuid": "^8.3.2",
"xstate": "^4.38.3"
},
"devDependencies": {
"@dnd-kit/core": "^6.1.0",
"@dnd-kit/sortable": "^8.0.0",
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.10.8",
"@eslint-react/eslint-plugin": "^1.53.0",
"@eslint/js": "^9.32.0",
"@hookform/resolvers": "^5.2.1",
"@jsonforms/core": "^3.6.0",
"@jsonforms/material-renderers": "^3.6.0",
"@jsonforms/react": "^3.6.0",
"@monaco-editor/react": "^4.7.0",
"@mui/icons-material": "^7.3.1",
"@mui/material": "^7.3.1",
"@mui/system": "^7.3.1",
"@mui/x-date-pickers": "^6.16",
"@playwright/test": "^1.59.1",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.3.0",
"@types/autosuggest-highlight": "^3.2.0",
"@types/dom-to-image": "^2.6.7",
"@types/lodash": "^4.14.178",
"@types/node": "^24.10.1",
"@types/qs": "^6.14.0",
"@types/react": "^18.2.0",
"@types/react-datepicker": "^6.0.1",
"@types/react-dom": "^18.2.0",
"@types/react-helmet": "^6.1.5",
"@types/react-highlight": "^0.12.8",
"@types/url-parse": "^1.4.11",
"@types/uuid": "^8.3.4",
"@vitejs/plugin-react": "^4.6.0",
"@vitest/coverage-v8": "^4.1.5",
"@vitest/eslint-plugin": "^1.6.16",
"eslint": "9.32.0",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.20",
"globals": "^17.6.0",
"husky": "^9.1.7",
"jsdom": "^26.1.0",
"lint-staged": "^16.4.0",
"monaco-editor": "^0.55.1",
"prettier": "^3.8.3",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-hook-form": "^7.72.1",
"react-router": "^7.14.1",
"react-router-dom": "^7.14.1",
"react-router-use-location-state": "^3.1.2",
"sass": "^1.99.0",
"styled-components": "^5.3.8",
"typescript": "^6.0.3",
"typescript-eslint": "^8.59.0",
"vite": "^7.1.11",
"vite-plugin-svgr": "^4.3.0",
"vite-tsconfig-paths": "^6.1.1",
"vitest": "^3.2.4",
"yup": "^1.7.0"
},
"resolutions": {
"vis-timeline": "7.3.6",
"vis-data": "7.1.9",
"mini-css-extract-plugin": "2.4.5"
},
"pnpm": {
"overrides": {
"vis-timeline": "7.3.6",
"mini-css-extract-plugin": "2.4.5"
}
},
"packageManager": "pnpm@10.34.1+sha512.b58fbde6dca66a929538021581f648b4570b6ca19b18e7cbd7f2c07a7b24454155388dacdf08f2af3678e88a6d1fe04f9d609df24bf51735a060ea041b374ab7"
}