-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.26 KB
/
Copy pathpackage.json
File metadata and controls
53 lines (53 loc) · 1.26 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": "tournament-organizer",
"version": "4.1.1",
"description": "JavaScript library for running tournaments",
"exports": {
".": "./dist/index.js",
"./interfaces": "./dist/interfaces/index.js",
"./components": "./dist/components/index.js"
},
"types": "./dist/index.d.js",
"files": [
"dist/**/*"
],
"type": "module",
"engines": {
"node": ">=16.7"
},
"scripts": {
"build": "npx rimraf dist && tsc -p tsconfig.json",
"docs": "typedoc --options typedoc.json",
"prepare": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/slashinfty/tournament-organizer.git"
},
"keywords": [
"tournament",
"pairings",
"scorekeeping",
"swiss",
"round robin",
"single elimination",
"double elimination"
],
"author": "Matt Braddock",
"license": "MIT",
"bugs": {
"url": "https://github.com/slashinfty/tournament-organizer/issues"
},
"homepage": "https://slashinfty.github.io/tournament-organizer/",
"dependencies": {
"tournament-pairings": "^2.0.1"
},
"devDependencies": {
"@types/node": "^24.9.1",
"ts-node": "^10.9.2",
"tslib": "^2.8.1",
"typedoc": "^0.28.14",
"typedoc-plugin-merge-modules": "^7.0.0",
"typescript": "^5.9.3"
}
}