forked from comfyanonymous/litegraph.js
-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
executable file
·52 lines (52 loc) · 1.35 KB
/
package.json
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
{
"name": "@comfyorg/litegraph",
"version": "0.8.25",
"type": "module",
"description": "A graph node editor similar to PD or UDK Blueprints. It works in an HTML5 Canvas and allows to export graphs to be included in applications.",
"main": "./dist/litegraph.umd.js",
"module": "./dist/litegraph.es.js",
"types": "./dist/litegraph.d.ts",
"style": "./dist/css/litegraph.css",
"exports": {
".": {
"import": "./dist/litegraph.es.js",
"require": "./dist/litegraph.umd.js",
"types": "./dist/litegraph.d.ts"
},
"./style.css": "./dist/css/litegraph.css"
},
"directories": {
"doc": "doc"
},
"private": false,
"scripts": {
"build": "tsc && vite build",
"dev": "vite",
"preview": "vite preview",
"watch": "vite build --watch",
"release": "node scripts/release.js",
"test": "vitest"
},
"repository": {
"type": "git",
"url": "git@github.com:Comfy-Org/litegraph.js.git"
},
"author": "comfyorg",
"license": "MIT",
"files": [
"dist"
],
"bugs": {
"url": "https://github.com/Comfy-Org/litegraph.js/issues"
},
"homepage": "https://github.com/Comfy-Org/litegraph.js",
"devDependencies": {
"@types/node": "^22.1.0",
"jsdom": "^25.0.1",
"ts-node": "^10.9.2",
"typescript": "^5.6.3",
"vite": "^5.3.4",
"vite-plugin-dts": "^4.3.0",
"vitest": "^2.1.4"
}
}