-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
129 lines (129 loc) · 3.19 KB
/
package.json
File metadata and controls
129 lines (129 loc) · 3.19 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
{
"name": "@dschz/solid-flow",
"version": "0.1.4",
"description": "Solid Flow - A highly customizable Solid library for building node-based editors, workflow systems, diagrams and more.",
"type": "module",
"author": "Daniel Sanchez <dsanc89@icloud.com>",
"license": "MIT",
"homepage": "https://github.com/dsnchz/solid-flow#readme",
"repository": {
"type": "git",
"url": "https://github.com/dsnchz/solid-flow.git"
},
"bugs": {
"url": "https://github.com/dsnchz/solid-flow/issues"
},
"publishConfig": {
"access": "public"
},
"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"
],
"files": [
"dist"
],
"scripts": {
"build": "tsup",
"build:watch": "tsup --watch",
"dev": "vite",
"format": "prettier . --check",
"format:fix": "prettier . --write",
"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"
},
"devDependencies": {
"@changesets/cli": "^2.29.6",
"@dagrejs/dagre": "^1.1.5",
"@solidjs/router": "^0.15.3",
"@solidjs/testing-library": "^0.8.10",
"@testing-library/jest-dom": "^6.8.0",
"@types/bun": "^1.2.21",
"@typescript-eslint/eslint-plugin": "^8.41.0",
"@typescript-eslint/parser": "^8.41.0",
"@vitest/coverage-istanbul": "^3.2.4",
"eslint": "^9.34.0",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-solid": "^0.14.5",
"globals": "^16.3.0",
"jiti": "^2.5.1",
"jsdom": "^26.1.0",
"prettier": "^3.6.2",
"tsup": "^8.5.0",
"tsup-preset-solid": "^2.2.0",
"typescript": "^5.9.2",
"typescript-eslint": "^8.41.0",
"vite": "^7.1.3",
"vite-plugin-solid": "^2.11.8",
"vitest": "^3.2.4"
},
"peerDependencies": {
"solid-js": ">=1.8.0"
},
"dependencies": {
"@solid-primitives/map": "^0.7.2",
"@solid-primitives/media": "^2.3.3",
"@solid-primitives/resize-observer": "^2.1.3",
"@xyflow/system": "^0.0.68",
"clsx": "^2.1.1"
},
"main": "./dist/index/index.js",
"module": "./dist/index/index.js",
"types": "./dist/index/index.d.ts",
"browser": {},
"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"
},
"typesVersions": {
"*": {
"styles": [
"./dist/styles/index.d.ts"
]
}
}
}