-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.48 KB
/
Copy pathpackage.json
File metadata and controls
44 lines (44 loc) · 1.48 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
{
"name": "shared-github-actions",
"version": "0.1.0",
"private": true,
"description": "AI-assisted reusable GitHub Actions, composite actions, and TypeScript actions for gforceinnovation",
"license": "MIT",
"engines": {
"node": ">=20"
},
"workspaces": [
"gforce-gha-src",
".github/actions/github-branch-sync",
".github/actions/github-release-pr-create",
".github/actions/sf-apex-test-select"
],
"scripts": {
"format": "prettier --write \"**/*.{ts,mjs,cjs,js}\"",
"format:check": "prettier --check \"**/*.{ts,mjs,cjs,js}\"",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"typecheck:all": "npm run typecheck --workspaces --if-present",
"build:all": "npm run typecheck:all",
"test:all": "npm run test --workspaces --if-present",
"bundle:all": "npm run bundle --workspaces --if-present",
"dist:verify": "git diff --exit-code -- ':(glob).github/actions/*/dist/**'",
"all": "npm run format:check && npm run lint && npm run typecheck:all && npm run bundle:all && npm run test:all && npm run dist:verify",
"prepare": "husky"
},
"devDependencies": {
"@eslint/js": "^9.9.0",
"@types/jest": "^29.5.12",
"@types/node": "^20.14.15",
"esbuild": "^0.23.1",
"eslint": "^9.9.0",
"eslint-config-prettier": "^9.1.0",
"husky": "^9.1.5",
"jest": "^29.7.0",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3",
"ts-jest": "^29.2.5",
"typescript": "^5.5.4",
"typescript-eslint": "^8.3.0"
}
}