mirror of
https://github.com/enso-org/enso.git
synced 2024-11-23 16:18:23 +03:00
4d2cc04e17
Fixed occasional issues with ydoc server starting in dev mode, which were caused by missing dist file, then nodemon failing to trigger a file watch event after esbuild completion. Now esbuild is directly responsible for managing a child process, without needing an additional layer of file watchers.
28 lines
654 B
JSON
28 lines
654 B
JSON
{
|
|
"version": "0.1.0",
|
|
"name": "ydoc-server-nodejs",
|
|
"private": true,
|
|
"type": "module",
|
|
"author": {
|
|
"name": "Enso Team",
|
|
"email": "contact@enso.org"
|
|
},
|
|
"module": "./dist/main.mjs",
|
|
"scripts": {
|
|
"compile": "node ./build.mjs build",
|
|
"start": "node ./dist/main.mjs",
|
|
"dev:watch": "node ./build.mjs watch",
|
|
"lint": "eslint .",
|
|
"format": "prettier --version && prettier --write src/ && eslint . --fix"
|
|
},
|
|
"dependencies": {
|
|
"ydoc-server": "workspace:*"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^20.11.21",
|
|
"esbuild": "^0.23.0",
|
|
"esbuild-plugin-wasm": "^1.1.0",
|
|
"typescript": "^5.5.3"
|
|
}
|
|
}
|