@hydro-project/hydroscope
Version:
React-based graph visualization library for Hydro dataflow programs
92 lines (91 loc) • 2.5 kB
JSON
{
"name": "@hydro-project/hydroscope",
"version": "1.0.0-alpha.1",
"description": "React-based graph visualization library for Hydro dataflow programs",
"keywords": [
"hydro",
"visualization",
"graph",
"react",
"dataflow"
],
"homepage": "https://github.com/hydro-project/hydroscope",
"repository": {
"type": "git",
"url": "https://github.com/hydro-project/hydroscope.git"
},
"license": "Apache-2.0",
"type": "module",
"author": "Hydro Project Contributors",
"main": "dist/index.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.esm.js",
"require": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./style.css": "./dist/style.css"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"publishConfig": {
"access": "public",
"tag": "alpha"
},
"scripts": {
"clean": "rimraf dist",
"build": "rollup -c",
"build:clean": "npm run clean && npm run build",
"dev": "rollup -c --watch",
"test": "vitest run",
"test:watch": "vitest",
"lint": "eslint 'src/**/*.{js,ts,tsx}' --max-warnings 0",
"lint:fix": "eslint 'src/**/*.{js,ts,tsx}' --fix",
"typecheck": "tsc -p tsconfig.build.json --noEmit",
"typecheck:strict": "tsc -p tsconfig.strict.json --noEmit",
"docs:sync": "node docs/syncSchema.cjs && node docs/validateExample.cjs",
"dev-reports": "bash dev_reports/refresh.sh",
"prepublishOnly": "npm run build:clean"
},
"peerDependencies": {
"react": ">=17.0.0",
"react-dom": ">=17.0.0"
},
"dependencies": {
"@xyflow/react": "^12.8.2",
"antd": "^5.26.7",
"elkjs": "^0.10.0"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^26.0.0",
"@rollup/plugin-node-resolve": "^15.0.0",
"@rollup/plugin-typescript": "^11.0.0",
"@types/react": "^18.0.0",
"@types/react-dom": "^18.0.0",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"eslint": "^8.57.1",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^4.6.2",
"jsdom": "^26.1.0",
"knip": "^5.62.0",
"madge": "^8.0.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"rimraf": "^5.0.10",
"rollup": "^4.0.0",
"rollup-plugin-postcss": "^4.0.0",
"ts-prune": "^0.10.3",
"tslib": "^2.8.1",
"typescript": "^5.3.3",
"vitest": "^3.2.4"
},
"engines": {
"node": ">=18.0"
}
}