-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.23 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.23 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": "@lichess/api",
"version": "0.1.1",
"keywords": [
"api",
"lichess"
],
"license": "MIT",
"author": "gameroman",
"repository": {
"type": "git",
"url": "git+https://github.com/lichess-api/typescript.git"
},
"files": [
"dist"
],
"type": "module",
"types": "./dist/index.d.mts",
"imports": {
"#lib/*": "./src/lib/*.ts",
"#schemas": "./src/schemas/index.ts"
},
"exports": {
".": "./dist/index.mjs",
"./schemas": "./dist/schemas.mjs",
"./package.json": "./package.json"
},
"scripts": {
"gen:schemas": "bun ./scripts/gen-schemas",
"gen:client": "bun ./scripts/gen-client",
"gen": "bun run --sequential gen:schemas gen:client format",
"test": "bun test",
"typecheck": "tsgo --noEmit",
"lint": "biome check",
"format": "biome check --write --linter-enabled=false",
"build": "bunx --bun tsdown",
"prepublishOnly": "bun run build"
},
"dependencies": {
"minizod": "0.0.3"
},
"devDependencies": {
"@biomejs/biome": "2.4.15",
"@gameroman/config": "0.1.0",
"@types/bun": "1.3.14",
"@typescript/native-preview": "7.0.0-dev.20260517.1",
"tsdown": "0.22.0",
"zod": "4.4.3"
},
"engines": {
"node": ">=24"
}
}