-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.17 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.17 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
{
"name": "@lichess/api",
"version": "0.0.3",
"type": "module",
"author": "gameroman",
"license": "MIT",
"scripts": {
"gen:schemas": "bun ./scripts/gen-schemas",
"gen:client": "bun ./scripts/gen-client",
"gen": "bun run gen:schemas && bun run gen:client && bun run format",
"test": "bun test",
"typecheck": "tsc --noEmit",
"lint": "biome check ./src",
"format": "biome check --write --linter-enabled=false",
"build": "bunx --bun tsdown",
"prepublishOnly": "bun run build"
},
"keywords": [
"api",
"lichess"
],
"imports": {
"#lib/*": "./src/lib/*.ts",
"#schemas": "./src/schemas/index.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lichess-api/typescript.git"
},
"files": [
"dist/**/*",
"README.md"
],
"dependencies": {
"zod": "^4.3.6"
},
"devDependencies": {
"@biomejs/biome": "2.3.15",
"@types/bun": "^1.3.9",
"@typescript/native-preview": "^7.0.0-dev.20260214.1",
"tsdown": "^0.20.3"
},
"types": "./dist/index.d.mts",
"exports": {
".": "./dist/index.mjs",
"./schemas": "./dist/schemas.mjs",
"./package.json": "./package.json"
}
}