-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.05 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.05 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
{
"name": "poker-hand-evaluator",
"version": "2.0.0",
"description": "Poker Texas Holdem Hand Evaluator using Cactus Kev's algorithm",
"keywords": ["poker", "evaluator", "Cactus Kev", "algorithm", "texas holdem"],
"type": "module",
"main": "./dist/poker-hand-evaluator.cjs",
"module": "./dist/poker-hand-evaluator.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/poker-hand-evaluator.js",
"require": "./dist/poker-hand-evaluator.cjs",
"types": "./dist/index.d.ts"
}
},
"files": ["dist"],
"scripts": {
"dev": "vite",
"build": "vite build",
"test": "vitest run",
"test:watch": "vitest",
"bench": "tsx src/bench.ts"
},
"repository": {
"type": "git",
"url": "https://github.com/codeKonami/poker-hand.git"
},
"author": {
"name": "codeKonami",
"email": "thomas.foricher@gmail.com"
},
"license": "MIT",
"devDependencies": {
"typescript": "^5.3.3",
"vite": "^5.0.12",
"vite-plugin-dts": "^3.7.2",
"vitest": "^1.2.2",
"tsx": "^4.7.0"
}
}