mirror of
https://github.com/Comfy-Org/ComfyUI_frontend.git
synced 2026-02-28 02:34:10 +00:00
Fix Vite build (#55)
* Fix build output * 0.7.37 * Fix type export * 0.7.38 * Adjust build * 0.7.39 * Add css to package declaration * 0.7.40 * ESM style named export * 0.7.41 * Fix style export for unit test * 0.7.42
This commit is contained in:
16
package.json
16
package.json
@@ -1,10 +1,20 @@
|
||||
{
|
||||
"name": "@comfyorg/litegraph",
|
||||
"version": "0.7.36",
|
||||
"version": "0.7.42",
|
||||
"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": "src/litegraph.js",
|
||||
"types": "src/litegraph.d.ts",
|
||||
"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"
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user