-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.41 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.41 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
54
55
56
57
58
59
60
61
62
{
"name": "glicko2-lite",
"version": "4.0.0",
"description": "Barebones Glicko-2 implementation",
"keywords": [
"statistics"
],
"license": "MIT",
"author": "Kenan Yildirim <kenan@kenany.me> (https://kenany.me/)",
"repository": {
"type": "git",
"url": "git+https://github.com/kenany/glicko2-lite.git"
},
"type": "commonjs",
"types": "dist/index.d.cts",
"main": "dist/index.cjs",
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
},
"./*.mjs": {
"default": "./dist/*.mjs"
},
"./*.cjs": {
"default": "./dist/*.cjs"
},
"./*": {
"import": "./dist/*.mjs",
"require": "./dist/*.cjs"
}
},
"files": [
"dist",
"LICENSE.txt"
],
"engines": {
"node": "22 || 24 || >=26"
},
"scripts": {
"build": "tsdown && tsc --noEmit",
"lint": "biome check",
"test": "vitest run",
"publint": "publint --strict",
"prepare": "pnpm build"
},
"devDependencies": {
"@biomejs/biome": "2.4.16",
"@containerbase/semantic-release-pnpm": "1.4.1",
"@kenan/biome-config": "1.0.6",
"beautify-benchmark": "0.2.4",
"benchmark": "2.1.4",
"conventional-changelog-conventionalcommits": "9.3.1",
"glicko2": "1.2.1",
"glicko2.ts": "1.3.2",
"publint": "0.3.21",
"semantic-release": "25.0.3",
"tsdown": "0.22.0",
"typescript": "6.0.3",
"vitest": "4.1.7"
}
}