-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathpackage.json
58 lines (58 loc) · 1.82 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"name": "tesseract-server",
"version": "2.6.0",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"module": "dist/tesseract-server.esm.js",
"scripts": {
"run": "node ./dist",
"start": "tsdx watch",
"build": "tsdx build",
"test": "tsdx test",
"lint": "tsdx lint src/ test/",
"format": "prettier --write src/**/* test/**/* README.md",
"full-test": "yarn run lint && yarn run build && yarn run test",
"release": "standard-version --dry-run",
"changelog": "yarn run changelog:prev && yarn run changelog:next",
"changelog:prev": "yarn run release --no-dry-run --skip.commit --skip.tag --first-release",
"changelog:next": "yarn run changelog:next:clean && yarn run changelog:next:generate",
"changelog:next:generate": "conventional-changelog -n .changelog.js -i CHANGELOG-next.md -s",
"changelog:next:clean": "node ./scripts/changelog/clean.js"
},
"devDependencies": {
"@types/async": "^3.2.20",
"@types/event-loop-lag": "^1.0.30",
"@types/multer": "^1.4.7",
"@types/node": "^20.6.2",
"conventional-changelog-cli": "^5.0.0",
"conventional-changelog-conventionalcommits": "^8.0.0",
"prettier": "^3.0.3",
"remark": "^13.0.0",
"standard-version": "^9.5.0",
"tsdx": "^0.14.1",
"tslib": "^2.0.3",
"typescript": "^3.1.3",
"unified": "^11.0.0",
"unist-util-select": "^3.0.4"
},
"dependencies": {
"@cloudnative/health-connect": "^2.1.0",
"async": "^3.2.4",
"bl": "^6.0.7",
"decoders": "^1.25.5",
"event-loop-lag": "^1.4.0",
"express": "^4.18.2",
"generic-pool": "^3.9.0",
"monaco-editor": "^0.49.0",
"multer": "^1.4.5-lts.1",
"yargs": "^17.7.2"
},
"files": [
"dist/"
],
"engines": {
"node": ">=16"
},
"author": "George Kotchlamazashvili <[email protected]>",
"license": "MIT"
}