generated from vladmandic/template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.42 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
{
"name": "@vladmandic/chess",
"version": "0.5.0",
"description": "Chess Engine Battles & Analysis",
"sideEffects": false,
"main": "dist/analyze.js",
"author": "Vladimir Mandic <mandic00@live.com>",
"bugs": {
"url": "https://github.com/vladmandic/chess/issues"
},
"homepage": "https://github.com/vladmandic",
"license": "MIT",
"engines": {
"node": ">=14.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vladmandic/chess.git"
},
"scripts": {
"start": "node dist/battle.js",
"build": "build --profile production",
"openings": "node --no-warnings src/generate-openings.js",
"analyze": "build --profile production && node --enable-source-maps --trace-warnings dist/analyze.js $1",
"battle": "build --profile production && node --enable-source-maps --trace-warnings --experimental-wasm-simd dist/battle.js $1"
},
"keywords": [],
"devDependencies": {
"@microsoft/api-extractor": "^7.33.6",
"@typescript-eslint/eslint-plugin": "^5.43.0",
"@typescript-eslint/parser": "^5.43.0",
"@vladmandic/build": "^0.7.14",
"@vladmandic/pilogger": "^0.4.6",
"esbuild": "^0.15.14",
"eslint": "8.27.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-json": "^3.1.0",
"globby": "^13.1.2",
"kokopu": "^3.3.0",
"tslib": "^2.4.1",
"typedoc": "^0.23.21",
"typescript": "4.8.4"
}
}