Update npm packages

Add --dump-dimensions option to rsx:debug for layout debugging
Mark framework publish

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
root
2025-12-03 21:48:28 +00:00
parent cff287e870
commit 8d92b287be
1226 changed files with 16280 additions and 19461 deletions

View File

@@ -1,4 +0,0 @@
support
test
examples
*.sock

6
node_modules/cookie-signature/History.md generated vendored Executable file → Normal file
View File

@@ -1,10 +1,14 @@
1.0.7 / 2023-04-12
==================
* backport the buffer support from the 1.2.x release branch (thanks @FadhiliNjagi!)
1.0.6 / 2015-02-03
==================
* use `npm test` instead of `make test` to run tests
* clearer assertion messages when checking input
1.0.5 / 2014-09-05
==================

0
node_modules/cookie-signature/Readme.md generated vendored Executable file → Normal file
View File

12
node_modules/cookie-signature/index.js generated vendored Executable file → Normal file
View File

@@ -8,14 +8,14 @@ var crypto = require('crypto');
* Sign the given `val` with `secret`.
*
* @param {String} val
* @param {String} secret
* @param {String|NodeJS.ArrayBufferView|crypto.KeyObject} secret
* @return {String}
* @api private
*/
exports.sign = function(val, secret){
if ('string' != typeof val) throw new TypeError("Cookie value must be provided as a string.");
if ('string' != typeof secret) throw new TypeError("Secret string must be provided.");
if ('string' !== typeof val) throw new TypeError("Cookie value must be provided as a string.");
if (null == secret) throw new TypeError("Secret key must be provided.");
return val + '.' + crypto
.createHmac('sha256', secret)
.update(val)
@@ -28,14 +28,14 @@ exports.sign = function(val, secret){
* returning `false` if the signature is invalid.
*
* @param {String} val
* @param {String} secret
* @param {String|NodeJS.ArrayBufferView|crypto.KeyObject} secret
* @return {String|Boolean}
* @api private
*/
exports.unsign = function(val, secret){
if ('string' != typeof val) throw new TypeError("Signed cookie string must be provided.");
if ('string' != typeof secret) throw new TypeError("Secret string must be provided.");
if ('string' !== typeof val) throw new TypeError("Signed cookie string must be provided.");
if (null == secret) throw new TypeError("Secret key must be provided.");
var str = val.slice(0, val.lastIndexOf('.'))
, mac = exports.sign(str, secret);

4
node_modules/cookie-signature/package.json generated vendored Executable file → Normal file
View File

@@ -1,6 +1,6 @@
{
"name": "cookie-signature",
"version": "1.0.6",
"version": "1.0.7",
"description": "Sign and unsign cookies",
"keywords": ["cookie", "sign", "unsign"],
"author": "TJ Holowaychuk <tj@learnboost.com>",
@@ -15,4 +15,4 @@
"test": "mocha --require should --reporter spec"
},
"main": "index"
}
}