-
-
Notifications
You must be signed in to change notification settings - Fork 335
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.04 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.04 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
{
"name": "@simple-git/repo",
"version": "3.1.1",
"private": true,
"workspaces": [
"packages/*",
"simple-git"
],
"resolutions": {
"jest": "29.7.0",
"typescript": "^5.7.3"
},
"scripts": {
"build": "yarn workspaces foreach -A run build",
"build:pkg": "yarn workspaces foreach -A run build:pkg",
"build:pkg:reset": "tsx ./devtools/reset-package-json",
"clean": "git clean -fxd -e .idea -e node_modules -e .yarn",
"clean:cache": "git clean -fxd .yarn node_modules packages simple-git",
"lint": "biome check",
"lint:fix": "biome check --write",
"test": "yarn workspaces foreach -A run test",
"test:consumer": "yarn workspaces foreach -A run test:consumer",
"test:win": "yarn workspaces foreach -A run test:win"
},
"dependencies": {
"@changesets/changelog-github": "^0.5.2",
"@changesets/cli": "^2.29.8",
"tsx": "^4.21.0",
"typescript": "^5"
},
"devDependencies": {
"@biomejs/biome": "^2.1.4",
"@kwsites/exec-p": "^0.4.0"
},
"packageManager": "yarn@4.12.0"
}