-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.07 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.07 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
{
"name": "equine",
"version": "1.0.0-alpha.0",
"description": "Minimal Lichess API Client for Node.js",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"license": "MIT",
"scripts": {
"build": "bunchee",
"test": "jest",
"format": "prettier --write .",
"codegen": "openapi-ts",
"prepublishOnly": "pnpm build"
},
"dependencies": {
"@hey-api/client-fetch": "^0.13.1"
},
"devDependencies": {
"@hey-api/openapi-ts": "^0.93.1",
"@types/jest": "^30.0.0",
"@types/node": "^25.0.3",
"bunchee": "^6.5.0",
"dotenv": "^17.0.0",
"jest": "^30.0.3",
"prettier": "^3.2.5",
"ts-jest": "^29.3.1",
"typescript": "^5.5.4"
},
"prettier": {
"semi": false,
"singleQuote": true
},
"files": [
"dist"
],
"keywords": [
"chess",
"lichess",
"api",
"client",
"node",
"openapi"
],
"author": "Jiwon Choi",
"repository": {
"type": "git",
"url": "https://github.com/devjiwonchoi/equine.git"
},
"engines": {
"node": ">=18.18.0"
},
"packageManager": "pnpm@9.6.0"
}