-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.76 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.76 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
{
"name": "@hiron-tez/chess",
"version": "2.1.0",
"description": "A chess engine. This is a fully functional game core that implements all the functionality and logic and provides an easy way to interact with the pieces.",
"main": "./dist/index.js",
"module": "./src/index.ts",
"types": "./dist/index.d.ts",
"scripts": {
"start": "bun run ./example/index.ts",
"dev": "bun --watch run ./example/index.ts",
"build": "bun build --target=node ./src/index.ts --outfile=./dist/index.js && bun run build:declaration",
"build:declaration": "tsc --emitDeclarationOnly --project ./tsconfig.types.json",
"duplications-report": "bunx jscpd src --format=typescript --mode=strict --reporters=html --ignore=index.ts",
"release": "bun test && bun run build && npm version patch && npm publish",
"release:minor": "bun test && bun run build && npm version minor && npm publish",
"release:major": "bun test && bun run build && npm version major && npm publish"
},
"devDependencies": {
"@eslint/js": "9.21.0",
"bun-types": "1.2.4",
"eslint": "9.21.0",
"globals": "16.0.0",
"prettier": "3.5.3",
"prettier-plugin-organize-imports": "4.1.0",
"typescript": "5.8.2",
"typescript-eslint": "8.26.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/HironTez/Chess.git"
},
"author": "hiron-tez",
"license": "Apache-2.0",
"files": [
"./dist/**/*.js",
"./dist/**/*.d.ts"
],
"keywords": [
"chess",
"chess core",
"chess engine",
"chess logic",
"chess library",
"chess game"
],
"bugs": {
"url": "https://github.com/HironTez/Chess/issues"
},
"homepage": "https://github.com/HironTez/Chess#readme",
"directories": {
"example": "example",
"test": "tests"
}
}