-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.29 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.29 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
{
"name": "gicho-config-monorepo",
"private": true,
"packageManager": "pnpm@10.14.0",
"repository": {
"type": "git",
"url": "https://github.com/gicho-dev/config"
},
"type": "module",
"engines": {
"node": ">=22",
"pnpm": ">=10"
},
"scripts": {
"build": "turbo build",
"clean": "tsx scripts/clean.ts",
"format": "prettier --check .",
"format:fix": "prettier --check --write .",
"lint": "eslint . --cache",
"lint:fix": "pnpm lint -- --fix",
"gen:eslint-rules-obj": "tsx scripts/gen-eslint-rules-obj.ts",
"gen:eslint-types": "jiti scripts/gen-eslint-types.ts",
"types": "turbo run types",
"types:p": "turbo run types --filter=\"./packages/*\"",
"all": "pnpm -F \"./{packages}/**\"",
"p": "pnpm -F \"./packages/**\"",
"cfg": "pnpm -F ./packages/config"
},
"devDependencies": {
"@gicho/cli": "catalog:dev",
"@gicho/config": "workspace:^",
"@types/node": "catalog:dev",
"@typescript-eslint/utils": "catalog:dev",
"@vitest/coverage-v8": "catalog:dev",
"ansis": "catalog:dev",
"eslint": "catalog:dev",
"jiti": "catalog:dev",
"json-schema-to-typescript-lite": "catalog:dev",
"prettier": "catalog:dev",
"svelte": "catalog:dev",
"tsdown": "catalog:dev",
"tsx": "catalog:dev",
"turbo": "catalog:dev",
"typescript": "catalog:dev",
"vitest": "catalog:dev"
}
}