@intrastellar/lozza 0.2.0 → 0.3.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (5) hide show
  1. package/LICENSE +619 -0
  2. package/README.md +10 -8
  3. package/index.js +4822 -4639
  4. package/package.json +13 -4
  5. package/worker.js +4821 -4669
package/package.json CHANGED
@@ -1,19 +1,28 @@
1
1
  {
2
2
  "name": "@intrastellar/lozza",
3
- "version": "0.2.0",
4
- "description": "Browser-compatible Lozza chess engine for userscripts and Node.js",
3
+ "version": "0.3.0",
4
+ "description": "Official Lozza JavaScript chess engine with a userscript-compatible Web Worker entry point.",
5
5
  "main": "index.js",
6
6
  "type": "commonjs",
7
7
  "files": [
8
8
  "index.js",
9
9
  "worker.js",
10
+ "LICENSE",
10
11
  "README.md"
11
12
  ],
12
13
  "keywords": [
13
14
  "chess",
14
15
  "engine",
16
+ "uci",
15
17
  "lozza",
16
- "userscript"
18
+ "web-worker"
17
19
  ],
18
- "license": "GPL-3.0-or-later"
20
+ "license": "MIT",
21
+ "repository": {
22
+ "type": "git",
23
+ "url": "https://github.com/op12no2/lozza"
24
+ },
25
+ "publishConfig": {
26
+ "access": "public"
27
+ }
19
28
  }