-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.18 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
{
"name": "monolib",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"check": "yarn lint && yarn test",
"fix": "yarn fix:js",
"build": "tsc --build",
"fix:js": "biome check --write .",
"lint": "biome check . && tsc --build",
"changeset:version:install": "yarn changeset version && corepack yarn install --mode=update-lockfile",
"lint:js": "biome check .",
"lint:ts": "tsc --build",
"pretest": "tsc --build",
"publish": "changeset publish",
"test": "tsc --build && node --test --enable-source-maps",
"build:watch": "tsc --build --watch",
"test:watch": "node --test --enable-source-maps --watch",
"test:build:watch": "npm-run-all build --parallel build:watch test:watch",
"version": "changeset version",
"release": "changeset publish"
},
"dependencies": {
"execa": "5.1.1",
"inflection": "3.0.0",
"inquirer": "8.2.6"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@changesets/cli": "^2.27.9",
"@types/node": "^22.9.0",
"npm-run-all": "^4.1.5",
"typescript": "^5.6.3"
},
"packageManager": "[email protected]",
"engines": {
"node": ">= 18",
"yarn": "4.2.1"
}
}