mirror of
https://github.com/barsdeveloper/ueblueprint.git
synced 2026-02-03 23:55:04 +08:00
* Keep track of entities * Fix renaming * Niagara variables wip * Several niagara decode and test * Move nodeTemplate code to dedicated file, self node added * Move node decoding functions to dedicated files * Move pin decoding logic to dedicated files * Accept space separated keys in objects * Build * Prevent a crash in case of incomplete object * Avoid creating objects unnecessarily * types formatting * Initial metasound style * Common pcg nodes colors * Fix string serialization * Metasound new styles and fixes * More metasound styles and colors * WIP * Several fixes * More tests and fixes * Clean gitignore
46 lines
1.4 KiB
JSON
Executable File
46 lines
1.4 KiB
JSON
Executable File
{
|
|
"name": "ueblueprint",
|
|
"description": "UE's Blueprint visualisation library",
|
|
"version": "1.0.0",
|
|
"type": "module",
|
|
"main": "dist/ueblueprint.js",
|
|
"types": "types.js",
|
|
"scripts": {
|
|
"build": "rollup --config && sass scss/export.scss:dist/css/ueb-style.css && sass scss/export.scss:dist/css/ueb-style.min.css --style=compressed",
|
|
"test": "npm run build && export UEBLUEPRINT_TEST_SERVER_PORT=8181 && npx concurrently -k \"http-server -s -p $UEBLUEPRINT_TEST_SERVER_PORT\" \"npx cypress run --env UEBLUEPRINT_TEST_SERVER_PORT=8181\"",
|
|
"start": "npx http-server"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/barsdeveloper/ueblueprint.git"
|
|
},
|
|
"keywords": [
|
|
"unreal",
|
|
"engine",
|
|
"blueprint"
|
|
],
|
|
"author": "barsdeveloper",
|
|
"license": "MIT",
|
|
"bugs": {
|
|
"url": "https://github.com/barsdeveloper/ueblueprint/issues"
|
|
},
|
|
"homepage": "https://github.com/barsdeveloper/ueblueprint#readme",
|
|
"devDependencies": {
|
|
"@playwright/test": "^1",
|
|
"@rollup/plugin-commonjs": "^25",
|
|
"@rollup/plugin-node-resolve": "^15",
|
|
"@rollup/plugin-terser": "^0",
|
|
"concurrently": "^8",
|
|
"http-server": "^14",
|
|
"rollup": "^4 || ^3 || ^2",
|
|
"rollup-plugin-copy": "^3",
|
|
"rollup-plugin-minify-html-literals": "^1",
|
|
"sass": "^1",
|
|
"terser": "^5"
|
|
},
|
|
"dependencies": {
|
|
"lit": "^2",
|
|
"parsernostrum": "^1"
|
|
}
|
|
}
|