-
-
Notifications
You must be signed in to change notification settings - Fork 47
/
package.json
25 lines (25 loc) · 917 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
{
"name": "stockfish.wasm",
"version": "0.10.0",
"description": "WebAssembly port of the strong chess engine Stockfish",
"keywords": ["chess", "stockfish", "emscripten", "lichess", "webassembly"],
"author": "Niklas Fiekas <[email protected]>",
"license": "GPL-3.0",
"repository": "github:lichess-org/stockfish.wasm",
"homepage": "https://github.com/lichess-org/stockfish.wasm#readme",
"funding": "https://lichess.org/patron",
"bugs": {
"url": "https://github.com/lichess-org/stockfish.wasm/issues",
"email": "[email protected]"
},
"main": "stockfish.js",
"files": [
"Copying.txt",
"stockfish.js",
"stockfish.wasm",
"stockfish.worker.js"
],
"scripts": {
"prepare": "cd src && make clean && make ARCH=wasm build -j && cd .. && cat preamble.js src/stockfish.js > stockfish.js && cp src/stockfish.worker.js src/stockfish.wasm ."
}
}