UNPKG

@lumina-study/graph

Version:

Graph library for Lumina Study

84 lines 2.5 kB
{ "name": "@lumina-study/graph", "version": "0.1.1", "description": "Graph library for Lumina Study", "type": "module", "main": "./dist/index.cjs", "module": "./dist/index.js", "types": "./dist/index.d.ts", "exports": { ".": { "types": "./dist/index.d.ts", "import": "./dist/index.js", "require": "./dist/index.cjs" }, "./styles": "./dist/graph.css", "./dist/graph.css": "./dist/graph.css" }, "files": [ "dist" ], "keywords": [ "graph", "lumina-study" ], "author": "", "license": "ISC", "publishConfig": { "access": "public" }, "peerDependencies": { "@xyflow/react": "^12.0.0", "react": "^18.0.0 || ^19.0.0", "react-dom": "^18.0.0 || ^19.0.0" }, "devDependencies": { "@chromatic-com/storybook": "^4.1.1", "@storybook/addon-a11y": "^9.1.13", "@storybook/addon-docs": "^9.1.13", "@storybook/addon-onboarding": "^9.1.13", "@storybook/addon-vitest": "^9.1.13", "@storybook/react-vite": "^9.1.13", "@storybook/test-runner": "^0.23.0", "@testing-library/jest-dom": "^6.9.1", "@testing-library/react": "^16.3.0", "@types/jest-image-snapshot": "^6.4.0", "@types/react": "^19.2.2", "@types/react-dom": "^19.2.2", "@vitejs/plugin-react": "^5.0.4", "@vitest/ui": "^4.0.1", "@xyflow/react": "^12.9.0", "concurrently": "^9.2.1", "eslint": "^9.38.0", "eslint-config-agent": "^1.6.2", "eslint-plugin-storybook": "^9.1.13", "http-server": "^14.1.1", "jest-image-snapshot": "^6.5.1", "jsdom": "^27.0.1", "playwright": "^1.56.1", "react": "^19.2.0", "react-dom": "^19.2.0", "release-it": "^19.0.5", "storybook": "^9.1.13", "typescript": "^5.9.3", "vite": "^7.1.11", "vite-plugin-dts": "^4.5.4", "vitest": "^4.0.1", "wait-on": "^9.0.1" }, "scripts": { "dev": "vite", "build": "vite build && tsc --emitDeclarationOnly", "test": "vitest", "test:ui": "vitest --ui", "test:run": "vitest run", "lint": "eslint .", "lint:fix": "eslint . --fix", "typecheck": "tsc --noEmit", "release": "release-it", "storybook": "storybook dev -p 6006", "build-storybook": "storybook build", "test-storybook": "test-storybook", "test-storybook:ci": "concurrently -k -s first -n \"SB,TEST\" -c \"magenta,blue\" \"pnpm build-storybook --quiet && npx http-server storybook-static --port 6006 --silent\" \"wait-on tcp:127.0.0.1:6006 && pnpm test-storybook\"" } }