Files
ComfyUI_frontend/packages/object-info-parser/package.json
Glary-Bot 465a7b95c5 fix(object-info-parser): declare GPL-3.0-only license
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).
2026-05-04 16:34:30 +00:00

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"
]
}
}