-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
68 lines (68 loc) · 1.84 KB
/
package.json
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
{
"name": "vitest-ecosystem-ci",
"version": "0.0.1",
"description": "Vitest Ecosystem CI",
"scripts": {
"prepare": "pnpm exec simple-git-hooks",
"lint": "eslint --ignore-path .gitignore '**/*.ts'",
"lint:fix": "pnpm lint --fix",
"format": "prettier --ignore-path .gitignore --check .",
"format:fix": "pnpm format --write",
"test:self": "tsx --tsconfig ./tsconfig.custom.json ecosystem-ci.ts _selftest",
"test": "tsx --tsconfig ./tsconfig.custom.json ecosystem-ci.ts",
"bisect": "tsx --tsconfig ./tsconfig.custom.json ecosystem-ci.ts bisect"
},
"simple-git-hooks": {
"pre-commit": "pnpm exec lint-staged --concurrent false"
},
"lint-staged": {
"*": [
"prettier --write --ignore-unknown"
],
"*.ts": [
"eslint --fix"
]
},
"packageManager": "[email protected]",
"type": "module",
"engines": {
"node": ">=18",
"pnpm": "^8.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vitest-dev/vitest-ecosystem-ci.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/vitest-dev/vitest-ecosystem-ci/issues"
},
"homepage": "https://github.com/vitest-dev/vitest-ecosystem-ci#readme",
"dependencies": {
"@actions/core": "^1.10.0",
"cac": "^6.7.14",
"execa": "^7.1.1",
"node-fetch": "^3.3.1"
},
"pnpm": {
"overrides": {
"braces": "^3.0.3"
}
},
"devDependencies": {
"@antfu/ni": "^0.21.4",
"@types/node": "^18.16.18",
"@types/semver": "^7.5.0",
"@typescript-eslint/eslint-plugin": "^5.60.0",
"@typescript-eslint/parser": "^5.60.0",
"eslint": "^8.43.0",
"eslint-define-config": "^1.21.0",
"eslint-plugin-n": "^16.0.0",
"lint-staged": "^13.2.2",
"prettier": "^2.8.8",
"semver": "^7.5.2",
"simple-git-hooks": "^2.8.1",
"tsx": "^3.12.7",
"typescript": "^5.1.3"
}
}