This repository has been archived on 2026-04-03. You can view files and clone it, but cannot push or open issues or pull requests.
Nico e2667f8e12 Initial nyx project — fork of hermes-frontend
Forked from hermes-frontend, stripped openclaw/bun specifics:
- Auth tokens: openclaw_session -> nyx_session
- Vite proxy: localhost:3003 -> localhost:8000 (assay)
- Prod WS: wss://assay.loop42.de/ws
- Workspace paths: removed openclaw-specific paths
- Added missing deps: @heroicons/vue, overlayscrollbars-vue
- Branding: title -> nyx

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-03-31 20:23:27 +02:00

68 lines
1.6 KiB
JSON

{
"name": "alien-signals",
"version": "3.1.2",
"license": "MIT",
"description": "The lightest signal library.",
"packageManager": "pnpm@9.12.0",
"types": "./types/index.d.ts",
"exports": {
".": {
"types": "./types/index.d.ts",
"import": "./esm/index.mjs",
"require": "./cjs/index.cjs"
},
"./cjs": {
"types": "./types/index.d.ts",
"import": "./cjs/index.cjs",
"require": "./cjs/index.cjs"
},
"./esm": {
"types": "./types/index.d.ts",
"import": "./esm/index.mjs",
"require": "./esm/index.mjs"
},
"./system": {
"types": "./types/system.d.ts",
"import": "./esm/system.mjs",
"require": "./cjs/system.cjs"
},
"./cjs/system": {
"types": "./types/system.d.ts",
"import": "./cjs/system.cjs",
"require": "./cjs/system.cjs"
},
"./esm/system": {
"types": "./types/system.d.ts",
"import": "./esm/system.mjs",
"require": "./esm/system.mjs"
}
},
"files": [
"cjs/*.cjs",
"esm/*.mjs",
"types/*.d.ts"
],
"repository": {
"type": "git",
"url": "git+https://github.com/johnsoncodehk/signals.git"
},
"scripts": {
"prepublishOnly": "npm run check && npm run test",
"check": "tsslint --project tsconfig.json",
"size": "node ./size.js",
"build": "node ./build.js",
"test": "npm run build && vitest run",
"bench": "npm run build && node --jitless --expose-gc benchs/propagate.mjs",
"memory": "npm run build && node --expose-gc benchs/memoryUsage.mjs"
},
"devDependencies": {
"@tsslint/cli": "latest",
"@tsslint/config": "latest",
"jest-extended": "latest",
"mitata": "latest",
"rolldown": "latest",
"typescript": "latest",
"vitest": "latest"
}
}