-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.68 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.68 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
{
"name": "root",
"private": true,
"license": "MIT",
"packageManager": "pnpm@10.17.0",
"engines": {
"node": ">=22.16",
"pnpm": ">=10.17"
},
"workspaces": [
"./packages/*"
],
"description": "Root package.json file for all time-sync packages",
"keywords": [
"react",
"typescript",
"utility",
"ui"
],
"repository": {
"type": "git",
"url": "https://www.github.com/buenos-nachos/time-sync.git"
},
"scripts": {
"build:all": "tsdown --workspace",
"changeset:version": "changeset version && git add --all",
"changeset:release": "changeset publish",
"check:all": "pnpm check:dependencies && pnpm check:lint && pnpm check:types",
"check:dependencies": "knip",
"check:lint": "biome check --error-on-warnings . && prettier --check --ignore-unknown '**' '!**/*.{json,jsonc,js,ts,jsx,tsx}' '!./pnpm-workspace.yaml'",
"check:types": "pnpm --recursive check:types",
"fix:dependencies": "knip --fix",
"format": "biome format --write . && prettier --write --ignore-unknown '**' '!**/*.{json,jsonc,js,ts,jsx,tsx}' '!./pnpm-workspace.yaml'",
"test": "vitest run",
"test:watch": "vitest watch"
},
"homepage": "https://www.github.com/buenos-nachos/time-sync",
"author": "Michael Smith <contact@nachos.dev> (https://www.nachos.dev)",
"bugs": {
"url": "https://www.github.com/buenos-nachos/time-sync/issues"
},
"devDependencies": {
"@biomejs/biome": "2.4.2",
"@changesets/cli": "2.29.8",
"@types/node": "catalog:",
"happy-dom": "catalog:",
"knip": "5.86.0",
"prettier": "3.8.1",
"tsdown": "0.20.1",
"typescript": "5.9.3",
"vitest": "catalog:"
},
"overrides": {
"@buenos-nachos/time-sync": "workspace:*",
"@buenos-nachos/time-sync-react": "workspace:*"
}
}