-
-
Notifications
You must be signed in to change notification settings - Fork 79
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.67 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.67 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
{
"name": "vite-ecosystem-ci",
"private": true,
"version": "0.0.1",
"description": "Vite Ecosystem CI",
"scripts": {
"prepare": "pnpm exec simple-git-hooks",
"lint": "eslint --cache '**/*.{js,ts}'",
"lint:fix": "pnpm lint --fix",
"typecheck": "tsc",
"format": "prettier --ignore-path .gitignore --check .",
"format:fix": "pnpm format --write",
"test:self": "node ecosystem-ci.ts _selftest",
"test": "node ecosystem-ci.ts",
"bisect": "node ecosystem-ci.ts bisect"
},
"simple-git-hooks": {
"pre-commit": "pnpm exec lint-staged --concurrent false"
},
"lint-staged": {
"*": [
"prettier --write --ignore-unknown"
],
"*.{js,ts}": [
"eslint --fix"
]
},
"packageManager": "pnpm@10.32.1",
"type": "module",
"engines": {
"node": ">=24",
"pnpm": "^10.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vitejs/vite-ecosystem-ci.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/vitejs/vite-ecosystem-ci/issues"
},
"homepage": "https://github.com/vitejs/vite-ecosystem-ci#readme",
"dependencies": {
"@actions/core": "^3.0.0",
"cac": "^7.0.0",
"execa": "^9.6.1"
},
"devDependencies": {
"@antfu/ni": "^30.0.0",
"@eslint/js": "^10.0.1",
"@types/node": "^25.5.0",
"@types/pacote": "^11.1.8",
"@types/semver": "^7.7.1",
"eslint": "^10.1.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-n": "^17.24.0",
"lint-staged": "^16.4.0",
"pacote": "^21.5.0",
"prettier": "^3.8.1",
"semver": "^7.7.4",
"simple-git-hooks": "^2.13.1",
"typescript": "^6.0.3",
"typescript-eslint": "^8.57.2"
}
}