fix(ipc): add json ipc type + buffer incoming messages until a listener is attached. (#8733)

* fix a few ipc issues

* a

* my own revisions

* remove none as a valid type

* a

* fix windows build

* remove comment

* make it work !!!!!!!!

* a

* formatter nonsense

* blah

* huge update refactor

* awa

* wow

* okay
This commit is contained in:
dave caruso
2024-04-01 01:51:15 -07:00
committed by GitHub
parent 7531bfbfe0
commit 81badbac4c
42 changed files with 826 additions and 323 deletions

View File

@@ -0,0 +1,28 @@
{
"name": "default-create-template",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"postinstall": "cd node_modules/puppeteer && bun install.mjs"
},
"dependencies": {
"@types/node": "20.7.0",
"@types/react": "18.2.22",
"@types/react-dom": "18.2.7",
"autoprefixer": "10.4.16",
"bun-types": "^1.0.3",
"eslint": "8.50.0",
"eslint-config-next": "14.1.3",
"next": "14.1.3",
"postcss": "8.4.30",
"puppeteer": "22.4.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"tailwindcss": "3.3.3",
"typescript": "5.2.2"
}
}