mirror of
https://github.com/enso-org/enso.git
synced 2024-11-22 22:10:15 +03:00
5faddf52f0
- Fix ESLint errors - Add documentation for *some* functions with blank documentation # Important Notes None
28 lines
671 B
JSON
28 lines
671 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 . --max-warnings=0",
|
|
"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"
|
|
}
|
|
}
|