-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 848 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 848 Bytes
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
{
"name": "@yuga-labs/poker-engine",
"version": "2.1.2",
"description": "Poker game engine and hand evaluator",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"files": [
"dist"
],
"scripts": {
"prepare": "npm run build",
"build": "tsc",
"watch": "tsc --watch",
"test": "vitest",
"test:watch": "vitest watch",
"type-check": "tsc --pretty --incremental false"
},
"devDependencies": {
"@augceo/iterators": "file:../iterators",
"@types/node": "^20.10.5",
"@types/supertest": "^6.0.3",
"postgres": "^3.4.7",
"supertest": "^7.1.4",
"typescript": "^5.3.3",
"vitest": "^4.0.16"
},
"dependencies": {
"@js-temporal/polyfill": "^0.5.1"
}
}