-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.17 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 2.17 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"author": "Adrian de la Rosa <adrian@delarosab.me>",
"bugs": {
"url": "https://github.com/echecsjs/progressive/issues"
},
"description": "Progressive score tiebreak for chess tournaments following FIDE rules. Zero dependencies.",
"devDependencies": {
"@eslint/js": "^10.0.1",
"@typescript-eslint/parser": "^8.57.0",
"@vitest/coverage-v8": "^4.1.0",
"@vitest/eslint-plugin": "^1.6.12",
"eslint": "^10.0.3",
"eslint-config-prettier": "^10.1.8",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-import-x": "^4.16.2",
"eslint-plugin-unicorn": "^64.0.0",
"husky": "^9.1.7",
"lint-staged": "^16.4.0",
"prettier": "^3.8.1",
"tsdown": "^0.21.4",
"typescript": "^6.0.2",
"typescript-eslint": "^8.57.0",
"vitest": "^4.1.0"
},
"engines": {
"node": ">=20"
},
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./cut1": {
"import": "./dist/cut1.js",
"types": "./dist/cut1.d.ts"
}
},
"files": [
"/dist/",
"LICENSE",
"README.md",
"CHANGELOG.md"
],
"homepage": "https://github.com/echecsjs/progressive#readme",
"keywords": [
"chess",
"fide",
"no-dependencies",
"progressive",
"tiebreak",
"tournament",
"typescript"
],
"license": "MIT",
"name": "@echecs/progressive",
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/echecsjs/progressive.git"
},
"scripts": {
"build": "tsdown",
"format": "pnpm run format:ci --write",
"format:ci": "prettier -l \"**/*.+(css|js|json|jsx|md|mjs|mts|ts|tsx|yml|yaml)\"",
"lint": "pnpm run lint:style && pnpm run lint:types",
"lint:ci": "pnpm run lint:style --max-warnings 0 && pnpm run lint:types",
"lint:style": "eslint \"src/**/*.{ts,tsx}\" \"*.mjs\" --fix",
"lint:types": "tsc --noEmit --project tsconfig.json",
"prepare": "husky && pnpm run build",
"test": "vitest run",
"test:coverage": "pnpm run test --coverage",
"test:watch": "pnpm run test --watch"
},
"sideEffects": false,
"type": "module",
"version": "3.0.2"
}