-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
53 lines (53 loc) · 1.4 KB
/
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
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
{
"name": "@kaisukez/makruk-js",
"version": "0.0.7",
"description": "Makruk (thai chess)",
"author": "Nattapon Chantasiriworawat <k@isukez.dev>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/kaisukez/makruk-js.git"
},
"bugs": {
"url": "https://github.com/kaisukez/makruk-js/issues"
},
"homepage": "https://github.com/kaisukez/makruk-js#readme",
"keywords": [
"makruk",
"makruk-thai",
"chess",
"thai-chess",
"chess-variant"
],
"files": [
"dist"
],
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"require": "./dist/index.js",
"import": "./dist/index.mjs",
"types": "./dist/index.d.ts"
},
"./package.json": "./package.json"
},
"engines": {
"node": ">=20"
},
"scripts": {
"build": "rm -rf dist && tsup src/index.ts --format cjs,esm --dts --minify",
"test": "jest -c jest.config.js --coverage"
},
"devDependencies": {
"@babel/preset-env": "^7.22.20",
"@babel/preset-typescript": "^7.23.0",
"@types/jest": "^29.5.5",
"jest": "^29.7.0",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"tsup": "^7.2.0",
"typescript": "^5.2.2"
}
}