blob: 4532712ed60b0a149ccdda921e13f9ccb659bae6 [file] [log] [blame]
gioc31bf142025-06-16 07:48:20 +00001{
2 "name": "config",
3 "version": "1.0.0",
4 "description": "",
5 "license": "ISC",
6 "author": "",
7 "type": "module",
8 "main": "dist/index.js",
9 "scripts": {
10 "build": "tsc",
11 "format": "prettier --write src/**/*.{js,ts,jsx,tsx} --list-different",
12 "format-check": "prettier --check src/**/*.{js,ts,jsx,tsx}",
gio9b7421a2025-06-18 12:31:13 +000013 "lint": "eslint .",
14 "test": "jest"
gioc31bf142025-06-16 07:48:20 +000015 },
16 "dependencies": {
gioc31bf142025-06-16 07:48:20 +000017 "@xyflow/react": "^12.3.3",
gio9b7421a2025-06-18 12:31:13 +000018 "uuid": "^11.0.2",
19 "zod": "^3.24.4"
gioc31bf142025-06-16 07:48:20 +000020 },
21 "devDependencies": {
gio9b7421a2025-06-18 12:31:13 +000022 "@types/jest": "^30.0.0",
gioc31bf142025-06-16 07:48:20 +000023 "eslint": "^9.13.0",
gio9b7421a2025-06-18 12:31:13 +000024 "jest": "^29.7.0",
gioc31bf142025-06-16 07:48:20 +000025 "prettier": "3.5.3",
gio9b7421a2025-06-18 12:31:13 +000026 "ts-jest": "^29.4.0",
gioc31bf142025-06-16 07:48:20 +000027 "typescript": "^5.8.3",
28 "typescript-eslint": "^8.11.0"
29 },
30 "prettier": {
31 "printWidth": 120,
32 "tabWidth": 4,
33 "useTabs": true,
34 "singleQuote": false,
35 "trailingComma": "all",
36 "arrowParens": "always"
37 }
38}