-
Notifications
You must be signed in to change notification settings - Fork 29
/
package.json
100 lines (100 loc) · 3.01 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "gtp2ogs",
"version": "8.0.4",
"homepage": "https://github.com/online-go/gtp2ogs",
"repository": {
"type": "git",
"url": "https://github.com/online-go/gtp2ogs.git"
},
"author": "Akita Noek <[email protected]> (https://online-go.com/)",
"description": "Wrapper to allow Gnu Go Text Protocol speaking Go engines to connect to Online-Go.com and play games",
"files": [
"dist/*",
"example_config.json5"
],
"scripts": {
"gulp": "gulp",
"webpack-watch": "webpack --watch --progress --color",
"test": "jest",
"lint": "eslint src/",
"lint:fix": "eslint --fix src/",
"prettier": "prettier --write \"src/**/*.{ts}\"",
"prettier:check": "prettier --check \"src/**/*.{ts,}\"",
"typedoc": "typedoc src/config.ts"
},
"pkg": {
"scripts": [
"dist/*.js"
],
"targets": [
"node18-linux-x64",
"node18-macos-x64",
"node18-win-x64"
],
"outputPath": "packaged"
},
"keywords": [
"gtp",
"ogs",
"online-go.com",
"go",
"baduk"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/online-go/gtp2ogs/issues"
},
"bin": "./dist/gtp2ogs.js",
"dependencies": {
"bufferutil": "^4.0.7",
"goban": "=0.7.5",
"json5": "^2.2.3",
"jsonschema": "^1.4.1",
"source-map-support": "^0.5.21",
"split2": "^4.1.0",
"tracer": "^1.1.6",
"utf-8-validate": "^6.0.3",
"ws": "^8.13.0",
"yargs": "^17.7.1"
},
"devDependencies": {
"@eslint/compat": "^1.1.1",
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.7.0",
"@types/jest": "^29.5.0",
"@types/node": "^18.15.5",
"@types/split2": "^3.2.1",
"@types/ws": "^8.5.4",
"@types/yargs": "^17.0.23",
"@typescript-eslint/eslint-plugin": "^7.16.1",
"@typescript-eslint/parser": "^7.16.1",
"eslint": "^9.7.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsdoc": "^48.7.0",
"eslint-plugin-prefer-arrow": "^1.2.3",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-unicorn": "^45.0.2",
"globals": "^15.8.0",
"gulp": "^4.0.2",
"gulp-eslint-new": "^1.7.2",
"gulp-sourcemaps": "^3.0.0",
"gulp-typescript": "^6.0.0-alpha.1",
"jest": "^29.5.0",
"jest-environment-jsdom": "^28.1.3",
"jest-transform-stub": "^2.0.0",
"jest-websocket-mock": "^2.4.0",
"pkg": "^5.8.1",
"prettier": "3.1.1",
"prettier-eslint": "^16.3.0",
"sinon": "^9.0.2",
"ts-jest": "^29.0.5",
"ts-json-schema-generator": "^1.2.0",
"ts-loader": "^9.5.1",
"ts-node": "^10.9.2",
"typedoc": "^0.25.9",
"typescript": "=5.5.3",
"webpack": "^5.76.3",
"webpack-cli": "^5.0.1"
}
}