mirror of
https://github.com/enso-org/enso.git
synced 2024-11-26 08:52:58 +03:00
47943a2e62
close #11420 Changelog: - update: add zlib compression to the `snapshot` metadata field - add: implement nodejs `zlib` for polyglot ydoc-server - add: implement nodejs `Buffer` for polyglot ydoc-server
28 lines
655 B
JSON
28 lines
655 B
JSON
{
|
|
"version": "0.1.0",
|
|
"name": "ydoc-server-polyglot",
|
|
"private": true,
|
|
"type": "commonjs",
|
|
"author": {
|
|
"name": "Enso Team",
|
|
"email": "contact@enso.org"
|
|
},
|
|
"main": "./dist/main.js",
|
|
"scripts": {
|
|
"compile": "node ./build.mjs build",
|
|
"start": "node ./dist/main.cjs",
|
|
"dev:watch": "node ./build.mjs watch",
|
|
"lint": "eslint . --max-warnings=0"
|
|
},
|
|
"dependencies": {
|
|
"ydoc-server": "workspace:*",
|
|
"ydoc-shared": "workspace:*"
|
|
},
|
|
"devDependencies": {
|
|
"@fal-works/esbuild-plugin-global-externals": "^2.1.2",
|
|
"esbuild": "^0.23.0",
|
|
"esbuild-plugin-wasm": "^1.1.0",
|
|
"typescript": "^5.5.3"
|
|
}
|
|
}
|