mirror of
https://github.com/enso-org/enso.git
synced 2024-12-18 04:32:23 +03:00
b286adaae4
# Important Notes The command to run the gui dev environment has been changed. Invoking the old command will print a message about that. From now on, use `pnpm dev:gui2` in repository root.
30 lines
713 B
JSON
30 lines
713 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": "corepack pnpm run /^^^^dev:/",
|
|
"dev:esbuild": "node ./build.mjs watch",
|
|
"dev:start": "nodemon --watch dist ./dist/main.mjs"
|
|
},
|
|
"dependencies": {
|
|
"ydoc-shared": "workspace:*",
|
|
"ydoc-server": "workspace:*"
|
|
},
|
|
"devDependencies": {
|
|
"esbuild-plugin-wasm": "^1.1.0",
|
|
"@types/node": "^20.11.21",
|
|
"esbuild": "^0.23.0",
|
|
"nodemon": "^3.1.4",
|
|
"typescript": "^5.5.3"
|
|
}
|
|
}
|