mirror of
https://github.com/Comfy-Org/ComfyUI_frontend.git
synced 2026-05-19 20:09:42 +00:00
The validate-licenses CI check fails on the new package because license-checker reports it as 'UNKNOWN'. Match the root package.json's GPL-3.0-only license, which is already on the workflow's allow-list, so the new package passes without touching the workflow allow-list or excludePackages list (which a maintainer would need to push).
31 lines
629 B
JSON
31 lines
629 B
JSON
{
|
|
"name": "@comfyorg/object-info-parser",
|
|
"version": "1.0.0",
|
|
"description": "Shared object_info schemas and helpers",
|
|
"license": "GPL-3.0-only",
|
|
"type": "module",
|
|
"main": "./src/index.ts",
|
|
"types": "./src/index.ts",
|
|
"exports": {
|
|
".": "./src/index.ts"
|
|
},
|
|
"scripts": {
|
|
"test": "vitest run --config ./vitest.config.ts",
|
|
"typecheck": "tsc --noEmit"
|
|
},
|
|
"dependencies": {
|
|
"zod": "catalog:",
|
|
"zod-validation-error": "catalog:"
|
|
},
|
|
"devDependencies": {
|
|
"typescript": "catalog:",
|
|
"vitest": "catalog:"
|
|
},
|
|
"nx": {
|
|
"tags": [
|
|
"scope:shared",
|
|
"type:util"
|
|
]
|
|
}
|
|
}
|