-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 898 Bytes
/
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
{
"name": "tsfish",
"version": "0.0.1",
"description": "TypeScript Chess Engine with UCI Interface",
"main": "index.js",
"scripts": {
"start": "bun run src/index.ts --watch",
"build": "bun build src/index.ts --outdir build --minify --target bun",
"build:binary": "bun build src/index.ts --compile --outfile tsfish",
"build:exec": "bun run build/index.js",
"test": "bun test --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/boweihan/TSFish.git"
},
"keywords": [
"chess",
"engine",
"typescript",
"lichess",
"bot"
],
"author": "Bowei Han",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/boweihan/TSFish/issues"
},
"homepage": "https://github.com/boweihan/TSFish#readme",
"devDependencies": {
"bun-types": "^1.0.1",
"prettier": "2.8.8",
"typescript": "^5.0.4"
}
}