forked from vitejs/vite-ecosystem-ci
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.58 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
{
"name": "vite-ecosystem-ci",
"version": "0.0.1",
"description": "Vite 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 ecosystem-ci.ts _selftest",
"test": "tsx ecosystem-ci.ts",
"bisect": "tsx ecosystem-ci.ts bisect"
},
"simple-git-hooks": {
"pre-commit": "pnpm exec lint-staged --concurrent false"
},
"lint-staged": {
"*": [
"prettier --write --ignore-unknown"
],
"**/*.js": [
"eslint"
]
},
"packageManager": "[email protected]",
"type": "module",
"engines": {
"node": "^14.13.1 || ^16 || ^18",
"pnpm": "^7.9.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": {
"cac": "^6.7.12",
"execa": "^6.1.0",
"node-fetch": "^3.2.10"
},
"devDependencies": {
"@antfu/ni": "^0.17.2",
"@types/node": "^17.0.14",
"@typescript-eslint/eslint-plugin": "^5.33.1",
"@typescript-eslint/parser": "^5.33.1",
"eslint": "^8.22.0",
"eslint-define-config": "^1.6.0",
"eslint-plugin-node": "^11.1.0",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1",
"simple-git-hooks": "^2.8.0",
"tsx": "^3.8.2",
"typescript": "^4.7.4"
}
}