Files
ComfyUI_frontend/package.json
filtered ddd1ac4f99 Add vite build (#53)
* Add vite build - baseline

* Fix build output folder structure

Matches pre-vite output

* Fix litegraph errors introduced by vite process

- Remove pre-written encapsulating iife (one is injected by vite)
- Replace all references to the global "this" with globalThis
2024-08-06 09:14:17 -04:00

42 lines
1.2 KiB
JSON
Executable File

{
"name": "@comfyorg/litegraph",
"version": "0.7.35",
"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",
"directories": {
"doc": "doc"
},
"private": false,
"scripts": {
"build": "tsc && vite build",
"dev": "vite",
"preview": "vite preview",
"deprecated-prebuild": "rimraf build",
"deprecated-start": "nodemon utils/server.js",
"deprecated-test": "jest",
"deprecated-test:allVersions": "./utils/test.sh",
"deprecated-prettier": "npx prettier --write src/**/*.* css/**/*.*",
"deprecated-lint": "npx eslint src",
"deprecated-lint:fix": "npx eslint --fix src"
},
"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",
"typescript": "^5.2.2",
"vite": "^5.3.4"
}
}