agent/ui/node_modules/@lit-labs/ssr-dom-shim/package.json
Snider bb88604045 feat(core): wire Core framework into agentic + monitor subsystems
Phase 2 of Core DI migration:
- Add *core.Core field + SetCore() to PrepSubsystem and monitor.Subsystem
- Register agentic/monitor/brain as Core services with lifecycle hooks
- Mark SetCompletionNotifier and SetNotifier as deprecated (removed in Phase 3)
- Fix monitor test to match actual event names
- initServices() now wires Core refs before legacy callbacks

Co-Authored-By: Virgil <virgil@lethean.io>
2026-03-24 14:44:53 +00:00

69 lines
1.5 KiB
JSON

{
"name": "@lit-labs/ssr-dom-shim",
"version": "1.5.1",
"publishConfig": {
"access": "public"
},
"description": "DOM shim for Lit Server Side Rendering (SSR)",
"license": "BSD-3-Clause",
"author": "Google LLC",
"homepage": "https://github.com/lit/lit/tree/main/packages/labs/ssr-dom-shim",
"repository": {
"type": "git",
"url": "git+https://github.com/lit/lit.git",
"directory": "packages/labs/ssr-dom-shim"
},
"main": "index.js",
"typings": "index.d.ts",
"type": "module",
"exports": {
".": {
"types": "./index.d.ts",
"default": "./index.js"
},
"./register-css-hook.js": {
"types": "./register-css-hook.d.ts",
"default": "./register-css-hook.js"
}
},
"files": [
"index.{d.ts,d.ts.map,js,js.map}",
"register-css-hook.{d.ts,d.ts.map,js,js.map}",
"lib/"
],
"scripts": {
"build": "wireit",
"build:ts": "wireit",
"test": "wireit"
},
"wireit": {
"build": {
"dependencies": [
"build:ts"
]
},
"build:ts": {
"command": "tsc --build --pretty",
"clean": "if-file-deleted",
"files": [
"src/**/*.ts",
"tsconfig.json"
],
"output": [
"lib/",
"index.{d.ts,d.ts.map,js,js.map}",
"tsconfig.tsbuildinfo"
]
},
"test": {
"command": "uvu test \"_test\\.js$\"",
"dependencies": [
"build"
],
"env": {
"NODE_OPTIONS": "--enable-source-maps --import ./register-css-hook.js"
},
"output": []
}
}
}