-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.32 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.32 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
{
"name": "monolib",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"check": "yarn lint:ts && yarn fix:js && yarn test",
"fix": "yarn fix:js",
"build": "tsc --build",
"fix:js": "biome check --write .",
"fix:js:unsafe": "biome check --write --unsafe .",
"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 'packages/*/dist/**/*.test.js' 'template-package/dist/**/*.test.js'",
"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.2",
"inquirer": "^8.2.7"
},
"devDependencies": {
"@biomejs/biome": "^2.4.14",
"@changesets/cli": "^2.31.0",
"@types/node": "^22.19.17",
"npm-run-all": "^4.1.5",
"typescript": "^5.9.3"
},
"packageManager": "yarn@4.12.0",
"engines": {
"node": ">= 18",
"yarn": "4.2.1"
}
}