@adhdev/daemon-standalone 0.9.82-rc.26 → 0.9.82-rc.261
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +48515 -20726
- package/dist/index.js.map +1 -1
- package/package.json +5 -3
- package/public/assets/index-C5W61nZC.js +113 -0
- package/public/assets/index-DW-XJSIP.css +1 -0
- package/public/assets/{terminal-CfAvHQvJ.js → terminal-DsCRNxW_.js} +4 -4
- package/public/assets/vendor-BHUMCOj6.js +2768 -0
- package/public/index.html +3 -3
- package/public/snake.html +229 -0
- package/vendor/mcp-server/index.js +2022 -1377
- package/vendor/mcp-server/index.js.map +1 -1
- package/vendor/mcp-server/package.json +1 -1
- package/vendor/session-host-daemon/index.js +78 -2
- package/vendor/session-host-daemon/index.js.map +1 -1
- package/vendor/session-host-daemon/index.mjs +78 -2
- package/vendor/session-host-daemon/index.mjs.map +1 -1
- package/public/assets/index-Ce58Aw2L.js +0 -98
- package/public/assets/index-CiB8XPwO.css +0 -1
- package/public/assets/vendor-CgiI0UIA.js +0 -2745
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@adhdev/daemon-standalone",
|
|
3
|
-
"version": "0.9.82-rc.
|
|
3
|
+
"version": "0.9.82-rc.261",
|
|
4
4
|
"description": "ADHDev standalone daemon — embedded HTTP/WS server for local dashboard",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"bin": {
|
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
"bundle:vendor": "node ./scripts/vendor-runtime-deps.mjs",
|
|
16
16
|
"dev": "tsx src/index.ts",
|
|
17
17
|
"start": "node dist/index.js",
|
|
18
|
-
"test": "node --import tsx --test test/*.test.ts",
|
|
18
|
+
"test": "node --import tsx --test test/*.test.ts && vitest run",
|
|
19
19
|
"typecheck": "tsc --noEmit -p tsconfig.json",
|
|
20
20
|
"prepublishOnly": "cd ../.. && npm run build -w packages/session-host-daemon && npm run build -w packages/mcp-server && npm run build -w packages/daemon-core && npm run build -w packages/web-standalone && cd packages/daemon-standalone && npm run bundle:web && npm run bundle:vendor && npm run build"
|
|
21
21
|
},
|
|
@@ -49,9 +49,11 @@
|
|
|
49
49
|
"devDependencies": {
|
|
50
50
|
"@types/node": "^22.0.0",
|
|
51
51
|
"@types/ws": "^8.18.1",
|
|
52
|
+
"playwright": "^1.60.0",
|
|
52
53
|
"tsup": "^8.2.0",
|
|
53
54
|
"tsx": "^4.19.0",
|
|
54
|
-
"typescript": "^5.5.0"
|
|
55
|
+
"typescript": "^5.5.0",
|
|
56
|
+
"vitest": "^4.1.3"
|
|
55
57
|
},
|
|
56
58
|
"repository": {
|
|
57
59
|
"type": "git",
|