mirror of
https://github.com/Comfy-Org/ComfyUI_frontend.git
synced 2026-02-02 14:27:40 +00:00
46 lines
1.4 KiB
JSON
46 lines
1.4 KiB
JSON
{
|
|
"name": "litegraph.js",
|
|
"version": "0.7.9",
|
|
"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": "build/litegraph.js",
|
|
"types": "src/litegraph.d.ts",
|
|
"directories": {
|
|
"doc": "doc"
|
|
},
|
|
"private": false,
|
|
"scripts": {
|
|
"prebuild": "rimraf build",
|
|
"build": "grunt build",
|
|
"start": "nodemon utils/server.js",
|
|
"test": "echo \"Error: no test specified\" && exit 1",
|
|
"prettier": "npx prettier --write src/**/*.* css/**/*.*",
|
|
"lint": "npx eslint src",
|
|
"lint:fix": "npx eslint --fix src"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/jagenjo/litegraph.js.git"
|
|
},
|
|
"author": "jagenjo",
|
|
"license": "MIT",
|
|
"files": [
|
|
"build",
|
|
"css/litegraph.css",
|
|
"src/litegraph.d.ts"
|
|
],
|
|
"bugs": {
|
|
"url": "https://github.com/jagenjo/litegraph.js/issues"
|
|
},
|
|
"homepage": "https://github.com/jagenjo/litegraph.js#readme",
|
|
"devDependencies": {
|
|
"express": "^4.17.1",
|
|
"google-closure-compiler": "^20171112.0.0",
|
|
"grunt": "^1.1.0",
|
|
"grunt-cli": "^1.2.0",
|
|
"grunt-closure-tools": "^1.0.0",
|
|
"grunt-contrib-concat": "^1.0.1",
|
|
"nodemon": "^1.19.4",
|
|
"rimraf": "^2.7.1"
|
|
}
|
|
}
|