-
-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.99 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 2.99 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "@eggjs/monorepo",
"version": "4.1.2-beta.9",
"private": true,
"description": "Eggjs framework monorepo",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/eggjs/egg.git"
},
"files": [
"README.md"
],
"type": "module",
"scripts": {
"clean-dist": "ut run clean --workspaces --if-present",
"build": "tsdown",
"prelint": "ut run clean-dist",
"lint": "oxlint --type-aware --type-check --quiet",
"fmt": "oxfmt",
"typecheck": "ut run clean-dist && ut run typecheck --workspaces --if-present",
"fmtcheck": "oxfmt --check .",
"pretest": "ut run clean-dist && ut run pretest --workspaces --if-present",
"test": "vitest run --bail 1 --retry 2 --testTimeout 20000 --hookTimeout 20000",
"test:cov": "ut run test -- --coverage",
"preci": "ut run pretest --workspaces --if-present",
"ci": "ut run test -- --coverage",
"site:dev": "cd site && npm run dev",
"site:build": "cd site && npm run build",
"puml": "puml . --dest ./site",
"example:dev:commonjs": "ut run dev --workspace helloworld-commonjs",
"example:dev:typescript": "ut run dev --workspace helloworld-typescript",
"example:dev:tegg": "ut run dev --workspace helloworld-tegg",
"example:test:all": "ut run test --workspace 'helloworld-*' --if-present",
"prepare": "husky",
"version:patch": "node scripts/version.js patch",
"version:minor": "node scripts/version.js minor",
"version:major": "node scripts/version.js major",
"version:prerelease": "node scripts/version.js prerelease",
"version:prepatch": "node scripts/version.js prepatch",
"version:preminor": "node scripts/version.js preminor",
"version:premajor": "node scripts/version.js premajor",
"version:alpha": "node scripts/version.js prerelease --prerelease-tag=alpha",
"version:beta": "node scripts/version.js prerelease --prerelease-tag=beta",
"version:rc": "node scripts/version.js prerelease --prerelease-tag=rc"
},
"devDependencies": {
"@eggjs/bin": "workspace:*",
"@eggjs/tsconfig": "workspace:*",
"@types/content-type": "catalog:",
"@types/js-yaml": "catalog:",
"@types/koa-compose": "catalog:",
"@types/node": "catalog:",
"@typescript/native-preview": "catalog:",
"@vitest/coverage-v8": "catalog:",
"@vitest/ui": "catalog:",
"c8": "catalog:",
"husky": "catalog:",
"js-yaml": "catalog:",
"lint-staged": "catalog:",
"mocha": "catalog:",
"oxfmt": "catalog:",
"oxlint": "catalog:",
"oxlint-tsgolint": "catalog:",
"publint": "catalog:",
"rimraf": "catalog:",
"semver": "catalog:",
"tsdown": "catalog:",
"tsx": "catalog:",
"typescript": "catalog:",
"unplugin-unused": "catalog:",
"urllib": "catalog:",
"utoo": "catalog:",
"vitest": "catalog:"
},
"lint-staged": {
"*": [
"oxfmt --no-error-on-unmatched-pattern",
"oxlint --type-aware --fix"
]
},
"engines": {
"node": ">=22.18.0"
},
"packageManager": "pnpm@10.28.0"
}