-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 2.4 KB
/
package.json
File metadata and controls
94 lines (94 loc) · 2.4 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
87
88
89
90
91
92
93
94
{
"name": "@vue/ecosystem-ci",
"private": true,
"version": "0.0.1",
"description": "Vue Ecosystem CI",
"scripts": {
"preinstall": "npx only-allow pnpm",
"postinstall": "pnpm install --dir typings",
"prepare": "pnpm exec simple-git-hooks",
"lint": "eslint",
"lint:fix": "pnpm lint --fix",
"format": "prettier --ignore-path .gitignore --check .",
"format:fix": "pnpm format --write",
"typecheck": "tsc",
"test:self": "tsx ecosystem-ci.ts _selftest",
"test": "tsx ecosystem-ci.ts",
"clean": "rimraf .verdaccio-cache/.local workspace && pnpm store prune",
"bisect": "tsx 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": "pnpm@10.30.3",
"type": "module",
"engines": {
"node": ">=18",
"pnpm": "^10.30.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vuejs/ecosystem-ci.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/vuejs/ecosystem-ci/issues"
},
"homepage": "https://github.com/vuejs/ecosystem-ci#readme",
"dependencies": {
"@actions/core": "^3.0.0",
"cac": "^6.7.14",
"execa": "^9.6.1",
"verdaccio": "^6.2.9",
"verdaccio-auth-memory": "^10.3.1"
},
"devDependencies": {
"@antfu/ni": "^28.2.0",
"@eslint/js": "^10.0.1",
"eslint": "^10.0.2",
"eslint-plugin-n": "^17.24.0",
"jiti": "^2.6.1",
"lint-staged": "^16.2.7",
"prettier": "3.8.1",
"rimraf": "^6.1.3",
"simple-git-hooks": "^2.13.1",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.56.1",
"yaml": "^2.8.2"
},
"pnpm": {
"overrides": {
"cookie@<0.7.0": "^1.1.1",
"jws@<3.2.3": "^3.2.3",
"qs@<6.14.1": "^6.15.0",
"js-yaml@>=4.0.0 <4.1.1": "^4.1.1",
"undici@<6.23.0": "^6.23.0",
"glob@>=11.0.0 <11.1.0": "^11.1.0",
"validator@<13.15.22": "^13.15.26",
"lodash@>=4.0.0 <=4.17.22": "^4.17.23",
"minimatch@>=7.0.0 <7.4.8": "^7.4.9",
"ajv@8.17.1": "^8.18.0"
},
"auditConfig": {
"ignoreGhsas": [
"GHSA-v6h2-p8h4-qcjw",
"GHSA-9965-vmph-33xx"
],
"ignoreCves": [
"CVE-2025-57319"
]
},
"onlyBuiltDependencies": [
"simple-git-hooks"
]
}
}