-
-
Notifications
You must be signed in to change notification settings - Fork 66
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.26 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.26 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
{
"name": "turnstyle",
"version": "3.2.3",
"private": true,
"description": "GitHub Action for limiting one workflow to complete at a time",
"main": "lib/main.js",
"engines": {
"node": ">=24.0.0"
},
"scripts": {
"build": "esbuild src/main.ts --bundle --platform=node --format=cjs --target=node24 --outfile=dist/index.js --minify",
"typecheck": "tsc --noEmit",
"test": "vitest --coverage",
"fmt": "prettier --write 'src/**/*.ts' '__tests__/**/*.ts'",
"fmtcheck": "prettier --check 'src/**/*.ts' '__tests__/**/*.ts'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/softprops/diffset.git"
},
"keywords": [
"actions",
"github"
],
"author": "softprops",
"license": "MIT",
"dependencies": {
"@actions/core": "^3.0.0",
"@octokit/plugin-throttling": "^11.0.3",
"@octokit/rest": "^22.0.1"
},
"devDependencies": {
"@types/node": "^24.12.0",
"@vitest/coverage-v8": "^4.1.2",
"esbuild": "^0.27.5",
"husky": "^9.1.7",
"lint-staged": "^16.4.0",
"prettier": "^3.8.1",
"typescript": "^6.0.2",
"vitest": "^4.0.6"
},
"lint-staged": {
"{__tests__,src}/**/*.ts": [
"npm run fmt"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}