-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 975 Bytes
/
Copy pathpackage.json
File metadata and controls
33 lines (33 loc) · 975 Bytes
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
{
"name": "@readma/root",
"author": "elcoosp",
"version": "0.0.0",
"description": "",
"packageManager": "pnpm@12.3.4",
"publishConfig": {
"access": "restricted"
},
"scripts": {
"boot": "pnpm i && turbo check lint fmt test doc & pnpm gen:readme",
"gen:readme": "deno run -A packages/cli/src/mod.ts gen",
"build": "turbo run build",
"dev": "turbo run dev",
"check": "turbo run check",
"lint": "turbo run lint",
"fmt": "turbo run fmt",
"test": "turbo run test",
"test:up": "turbo run test:up",
"test:cov": "turbo run test:cov",
"test:watch": "turbo run test:watch",
"doc": "turbo run doc",
"ci:publish": "changeset publish",
"ci:version": "pnpm ci:pre-version && changeset version",
"ci:pre-version": "deno run -A scripts/pre-version.ts",
"changeset": "changeset"
},
"devDependencies": {
"@changesets/cli": "^3.0.0",
"@elcoosp-configs/cspell": "^0.0.7",
"turbo": "^2.4.4"
}
}