-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.52 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
{
"name": "@first-australia/latitude-scheduler",
"version": "0.2.4",
"description": "This repository is the latest iteration of the FIRST Australia scheduling software (primarily for use in scheduling FIRST LEGO League tournaments).",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"dev": "ts-node src/index.ts",
"build": "tsup",
"test": "jest",
"lint": "pnpm dlx @biomejs/biome lint ./src ",
"lint:files": "pnpm dlx @biomejs/biome lint ./src 2>&1 | egrep '\\.(ts|tsx):' ",
"lint:fix": "pnpm dlx @biomejs/biome lint ./src --apply",
"format": "pnpm dlx @biomejs/biome format ./src --write",
"ci:version": "pnpm changeset version",
"ci:publish": "pnpm publish -r"
},
"keywords": [],
"author": "Fred Westling",
"license": "ISC",
"devDependencies": {
"@biomejs/biome": "^1.6.1",
"@changesets/cli": "^2.27.1",
"@types/jest": "^29.5.11",
"@types/luxon": "^3.3.7",
"@types/uuid": "^9.0.8",
"jest": "^29.7.0",
"lefthook": "^1.6.7",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.2",
"tsup": "^8.0.1",
"typescript": "^5.3.3"
},
"dependencies": {
"luxon": "^3.4.4",
"uuid": "^9.0.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/firstaustralia/latitude-scheduler.git"
},
"bugs": {
"url": "https://github.com/firstaustralia/latitude-scheduler/issues"
},
"homepage": "https://github.com/firstaustralia/latitude-scheduler#readme"
}