forked from vitejs/vite-ecosystem-ci
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.52 KB
/
Copy pathpackage.json
File metadata and controls
62 lines (62 loc) · 1.52 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
{
"name": "vite-ecosystem-ci",
"version": "0.0.1",
"private": true,
"description": "Vite Ecosystem CI",
"homepage": "https://github.com/vitejs/vite-ecosystem-ci#readme",
"bugs": {
"url": "https://github.com/vitejs/vite-ecosystem-ci/issues"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/vitejs/vite-ecosystem-ci.git"
},
"type": "module",
"scripts": {
"prepare": "pnpm exec simple-git-hooks",
"lint": "oxlint",
"lint:fix": "pnpm lint --fix",
"typecheck": "tsc",
"format": "oxfmt --check",
"format:fix": "oxfmt --write",
"test:self": "node ecosystem-ci.ts _selftest",
"test": "node ecosystem-ci.ts",
"bisect": "node ecosystem-ci.ts bisect"
},
"dependencies": {
"@actions/core": "^3.0.1",
"cac": "^7.0.0",
"execa": "^10.0.1"
},
"devDependencies": {
"@antfu/ni": "^30.5.0",
"@types/node": "^25.9.5",
"@types/pacote": "^11.1.8",
"@types/semver": "^7.8.0",
"eslint-plugin-n": "^18.2.2",
"lint-staged": "^17.3.0",
"oxfmt": "^0.62.0",
"oxlint": "^1.77.0",
"oxlint-tsgolint": "^7.0.2001",
"pacote": "^21.5.1",
"semver": "^7.8.5",
"simple-git-hooks": "^2.13.1",
"typescript": "^7.0.2"
},
"simple-git-hooks": {
"pre-commit": "pnpm exec lint-staged --concurrent false"
},
"lint-staged": {
"*": [
"oxfmt --no-error-on-unmatched-pattern"
],
"*.{js,ts}": [
"oxlint --fix"
]
},
"engines": {
"node": ">=24"
},
"packageManager": "pnpm@11.20.0"
}