mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
5382178309
Upgrade TypeScript to v5 GitOrigin-RevId: 55d98c0e8fdeb39c1297b4472f0d604e25af995b
31 lines
864 B
JSON
31 lines
864 B
JSON
{
|
|
"name": "overleaf-editor-core",
|
|
"version": "1.0.0",
|
|
"description": "Library shared between the editor server and clients.",
|
|
"main": "index.js",
|
|
"scripts": {
|
|
"test": "mocha",
|
|
"format": "prettier --list-different $PWD/'**/*.js'",
|
|
"format:fix": "prettier --write $PWD/'**/*.js'",
|
|
"lint": "eslint --max-warnings 0 --format unix lib test && tsc",
|
|
"lint:fix": "eslint --fix lib test",
|
|
"test:ci": "npm run test",
|
|
"coverage": "istanbul cover _mocha"
|
|
},
|
|
"author": "team@overleaf.com",
|
|
"license": "Proprietary",
|
|
"private": true,
|
|
"devDependencies": {
|
|
"@types/bluebird": "^3.5.30",
|
|
"chai": "^3.3.0",
|
|
"istanbul": "^0.4.5",
|
|
"mocha": "^10.2.0",
|
|
"typescript": "^5.0.4"
|
|
},
|
|
"dependencies": {
|
|
"@overleaf/o-error": "*",
|
|
"bluebird": "^3.1.1",
|
|
"check-types": "^5.1.0",
|
|
"lodash": "^4.17.19"
|
|
}
|
|
}
|