-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
61 lines (61 loc) · 1.67 KB
/
package.json
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
{
"name": "tournament-organizer",
"version": "3.8.1",
"description": "JavaScript library for running tournaments",
"exports": {
".": {
"browser": "./dist/index.module.js",
"umd": "./dist/index.umd.js",
"import": "./dist/index.js"
},
"./interfaces": "./dist/interfaces/index.js",
"./components": "./dist/components/index.js"
},
"types": "./dist/index.d.js",
"files": [
"dist/**/*"
],
"type": "module",
"engines": {
"node": ">=14.16"
},
"scripts": {
"build": "rm -rf dist/* && tsc -p tsconfig.json && rollup --config rollup.es.config.ts --configPlugin typescript && rollup --config rollup.umd.config.ts --configPlugin typescript",
"docs": "typedoc --options typedoc.json"
},
"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": {
"randomstring": "^1.3.0",
"tournament-pairings": "^1.6.0"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^28.0.1",
"@rollup/plugin-node-resolve": "^15.3.0",
"@rollup/plugin-typescript": "^12.1.1",
"@types/randomstring": "^1.3.0",
"rollup": "^4.28.1",
"rollup-plugin-polyfill-node": "^0.13.0",
"tslib": "^2.8.1",
"typedoc": "^0.27.4",
"typedoc-plugin-merge-modules": "^6.1.0",
"typescript": "^5.7.2"
}
}