-
-
Notifications
You must be signed in to change notification settings - Fork 29
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.79 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 1.79 KB
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "chess",
"description": "An algebraic notation driven chess engine that can validate board position and produce a list of viable moves (notated).",
"version": "1.5.1",
"contributors": [
{
"name": "Joshua Thomas",
"email": "joshua.thomas@gmail.com",
"url": "https://github.com/brozeph"
},
{
"name": "Denis Efremov",
"url": "https://github.com/Piterden"
},
{
"name": "Fun Planet",
"url": "https://github.com/dipamsen"
},
{
"name": "Lee Danilek",
"url": "https://githb.com/ldanilek"
},
{
"name": "Ayush Thakur",
"url": "https://githb.com/ayshthkr"
},
{
"name": "Lewis",
"url": "https://github.com/ctjlewis"
}
],
"exports": {
".": {
"types": "./@types/chess/chess.d.ts",
"import": "./src/main.js",
"require": "./cjs/main.cjs"
}
},
"type": "module",
"engine": "node >= 16.0",
"repository": {
"type": "git",
"url": "https://github.com/brozeph/node-chess.git"
},
"license": "MIT",
"homepage": "https://brozeph.github.io/node-chess",
"bugs": "https://github.com/brozeph/node-chess/issues",
"keywords": [
"chess",
"algebraic notation"
],
"main": "./cjs/main.cjs",
"types": "@types/chess/chess.d.ts",
"scripts": {
"lint": "npx eslint ./src/** ./test/**",
"pretest": "npx eslint ./src/** ./test/**",
"test": "vitest run --coverage",
"test:unit": "vitest",
"build": "esbuild src/main.js --bundle --platform=node --format=cjs --outfile=cjs/main.cjs",
"prepack": "npm run build"
},
"dependencies": {
"crypto-js": "^4.2.0"
},
"devDependencies": {
"@vitest/coverage-v8": "^4.0.4",
"coveralls": "^3.1.1",
"esbuild": "^0.25.11",
"eslint": "^9.38.0",
"vitest": "^4.0.4"
}
}