-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
133 lines (133 loc) · 3.27 KB
/
Copy pathpackage.json
File metadata and controls
133 lines (133 loc) · 3.27 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
{
"name": "@dschz/solid-flow",
"version": "0.2.6",
"description": "Solid Flow - A highly customizable Solid library for building node-based editors, workflow systems, diagrams and more.",
"keywords": [
"ai workflows",
"automation",
"canvas",
"diagram",
"diagramming",
"drag and drop",
"flow",
"flow chart",
"flowchart",
"g6",
"graph",
"graph editor",
"graph visualization",
"llm workflows",
"low-code",
"node editor",
"node-based editor",
"node-based ui",
"orchestration",
"reactflow",
"solid",
"solid flow",
"solid-flow",
"solid-js",
"solidjs",
"svelteflow",
"visual programming",
"workflow",
"workflow builder",
"workflow editor",
"xyflow"
],
"homepage": "https://github.com/dsnchz/solid-flow#readme",
"bugs": {
"url": "https://github.com/dsnchz/solid-flow/issues"
},
"license": "MIT",
"author": "Daniel Sanchez <dsanc89@icloud.com>",
"repository": {
"type": "git",
"url": "https://github.com/dsnchz/solid-flow.git"
},
"files": [
"dist"
],
"type": "module",
"main": "./dist/index/index.js",
"module": "./dist/index/index.js",
"browser": {},
"types": "./dist/index/index.d.ts",
"typesVersions": {
"*": {
"styles": [
"./dist/styles/index.d.ts"
]
}
},
"exports": {
".": {
"solid": "./dist/index/index.jsx",
"import": {
"types": "./dist/index/index.d.ts",
"default": "./dist/index/index.js"
}
},
"./styles": "./dist/styles/index.css",
"./dist/style.css": "./dist/styles/index.css"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsdown",
"build:watch": "tsdown --watch",
"dev": "vite",
"format": "oxfmt --check",
"format:fix": "oxfmt",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"pkg:changeset": "changeset",
"pkg:version": "changeset version",
"pkg:publish": "bun run build && changeset publish",
"serve": "vite preview",
"start": "vite",
"test": "vitest run",
"test:cov": "vitest run --coverage",
"typecheck": "tsc --noEmit",
"test:ssr": "vitest run --config vite.config.ssr.ts"
},
"dependencies": {
"@solid-primitives/map": "^0.7.4",
"@solid-primitives/media": "^2.3.6",
"@solid-primitives/resize-observer": "^2.2.0",
"@xyflow/system": "^0.0.80",
"clsx": "^2.1.1"
},
"devDependencies": {
"@changesets/cli": "2.31.1",
"@dagrejs/dagre": "^1.1.5",
"@solidjs/router": "0.16.2",
"@solidjs/testing-library": "0.8.10",
"@testing-library/jest-dom": "7.0.0",
"@types/bun": "1.3.14",
"@typescript-eslint/eslint-plugin": "8.65.0",
"@typescript-eslint/parser": "8.65.0",
"@vitest/coverage-istanbul": "4.1.10",
"eslint": "^9.34.0",
"eslint-plugin-simple-import-sort": "14.0.0",
"eslint-plugin-solid": "^0.14.5",
"globals": "17.7.0",
"jiti": "2.7.0",
"jsdom": "29.1.1",
"oxfmt": "^0.60.0",
"tsdown": "0.22.14",
"typescript": "6.0.3",
"typescript-eslint": "8.65.0",
"unplugin-solid": "2.0.0",
"vite": "8.1.5",
"vite-plugin-solid": "2.11.13",
"vitest": "4.1.10"
},
"peerDependencies": {
"solid-js": ">=1.8.0"
},
"overrides": {
"babel-preset-solid": "1.9.6"
}
}