- Added SignRequestManager.js to manage sign requests, including UI states for keyspace lock, mismatch, and approval. - Implemented methods for loading state, rendering UI, and handling user interactions (approve/reject requests). - Integrated background message listeners for keyspace unlock events and request updates.
22 lines
456 B
JSON
22 lines
456 B
JSON
{
|
|
"name": "mock-sigsocket-server",
|
|
"version": "1.0.0",
|
|
"description": "Mock SigSocket server for testing browser extension",
|
|
"main": "mock_sigsocket_server.js",
|
|
"scripts": {
|
|
"start": "node mock_sigsocket_server.js",
|
|
"test": "echo \"Error: no test specified\" && exit 1"
|
|
},
|
|
"dependencies": {
|
|
"ws": "^8.14.0"
|
|
},
|
|
"keywords": [
|
|
"websocket",
|
|
"sigsocket",
|
|
"testing",
|
|
"mock"
|
|
],
|
|
"author": "",
|
|
"license": "MIT"
|
|
}
|