-
Notifications
You must be signed in to change notification settings - Fork 163
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 996 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 996 Bytes
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
{
"name": "stockfish",
"description": "The Stockfish chess engine in Web Assembly (WASM)",
"version": "18.0.7",
"buildVersion": "18",
"author": {
"name": "Nathan Rugg",
"email": "nmrugg@gmail.com"
},
"contributors": [
{
"name": "Chess.com",
"url": "https://www.chess.com"
}
],
"dependencies": {},
"keywords": [
"chess"
],
"repository": {
"type": "git",
"url": "git://github.com/nmrugg/stockfish.js"
},
"license": "GPL-3.0",
"bin": "scripts/cli.js",
"scripts": {
"build": "node build.js -f",
"build-lite": "node build.js --lite -f",
"build-single": "node build.js --single-threaded -f",
"build-single-lite": "node build.js --single-threaded --lite -f",
"postinstall": "node scripts/postinstall.js",
"prepack": "node scripts/prepack.js",
"postpack": "node scripts/postpack.js"
},
"files": [
"bin/",
"scripts/postinstall.js"
],
"readmeFilename": "README.md",
"main": "index.js"
}