forked from swc-project/swc-ecosystem-ci
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.36 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
{
"name": "swc-ecosystem-ci",
"packageManager": "pnpm@8.7.5",
"type": "module",
"engines": {
"node": ">=18",
"pnpm": "^8.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/swc-project/swc-ecosystem-ci.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/swc-project/swc-ecosystem-ci/issues"
},
"homepage": "https://github.com/swc-project/swc-ecosystem-ci#readme",
"private": true,
"version": "0.1.0",
"keywords": [],
"author": "",
"scripts": {
"prepare": "husky install",
"test": "tsx ecosystem-ci.ts",
"enable": "tsx ecosystem-ci.ts enable",
"bisect": "tsx ecosystem-ci.ts bisect"
},
"devDependencies": {
"@types/node": "^20.8.3",
"@typescript-eslint/eslint-plugin": "^6.7.4",
"eslint": "^8.51.0",
"eslint-define-config": "^1.23.0",
"eslint-plugin-n": "^16.1.0",
"husky": "^8.0.3",
"lint-staged": "^14.0.1",
"prettier": "^3.0.3",
"tsx": "^3.13.0",
"typescript": "^5.2.2"
},
"lint-staged": {
"**/*.{js,jsx,ts,tsx}": [
"eslint --fix",
"prettier --write"
],
"*": [
"prettier --write --ignore-unknown"
]
},
"dependencies": {
"@actions/core": "^1.10.1",
"@antfu/ni": "^0.21.8",
"@octokit/core": "^5.0.1",
"cac": "^6.7.14",
"execa": "^8.0.1",
"octokit": "^3.1.1",
"semver": "^7.5.4"
}
}