-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.39 KB
/
Copy pathpackage.json
File metadata and controls
49 lines (49 loc) · 1.39 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
{
"name": "released",
"version": "0.0.0",
"private": true,
"type": "module",
"description": "Find the first release containing a git commit.",
"scripts": {
"build": "pnpm -r build",
"test": "pnpm -r test",
"typecheck": "pnpm -r typecheck",
"validate": "scripts/validate.sh",
"doctor": "scripts/doctor.sh",
"check:publish": "scripts/check-publish.sh",
"check:deploy-config": "scripts/check-deploy-config.sh",
"ci:status": "scripts/ci-status.sh",
"lint": "biome check --error-on-warnings .",
"lint:fix": "biome check --write .",
"format": "biome format --write .",
"changeset": "changeset",
"version": "changeset version && pnpm format",
"release": "pnpm -r build && pnpm check:publish && changeset publish",
"prepare": "git config core.hooksPath .githooks || true"
},
"devDependencies": {
"@biomejs/biome": "^2.5.6",
"@changesets/cli": "^2.31.1",
"publint": "^0.3.22",
"typescript": "^7.0.2",
"vitest": "^4.1.10"
},
"pnpm": {
"overrides": {
"form-data": ">=4.0.6",
"undici": ">=7.29.0",
"jsdom>undici": ">=7.29.0 <8",
"ws": ">=8.21.0",
"vite": ">=6.4.3",
"read-yaml-file@1": "^2.1.0",
"js-yaml@4": "^4.3.1",
"nanoid@3": "^3.3.18",
"esbuild": ">=0.28.1",
"sharp": ">=0.35.0"
}
},
"engines": {
"node": ">=20"
},
"packageManager": "pnpm@10.18.2"
}