1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
{
"name": "kioku",
"version": "0.1.0",
"description": "An Anki clone",
"main": "index.js",
"scripts": {
"test": "pnpm -r run test",
"typecheck": "tsc --build pkgs/*/tsconfig.json",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"format": "biome format --write ."
},
"keywords": [],
"author": "nsfisis",
"license": "MIT",
"packageManager": "pnpm@10.23.0",
"type": "module",
"devDependencies": {
"@biomejs/biome": "^2.3.8",
"typescript": "^5.9.3"
}
}
|