forked from actions/javascript-action
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.49 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2.49 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
{
"name": "github-action-template",
"type": "module",
"version": "0.0.0",
"private": true,
"packageManager": "pnpm@10.14.0",
"description": "GitHub Actions TypeScript Template",
"author": "",
"license": "MIT",
"homepage": "https://github.com/pixpilot/github-action-template#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/pixpilot/github-action-template.git"
},
"bugs": {
"url": "https://github.com/pixpilot/github-action-template/issues"
},
"keywords": [
"actions",
"typescript"
],
"exports": {
".": "./dist/index.js"
},
"engines": {
"node": ">=20"
},
"scripts": {
"setup": "npx @pixpilot/scaffoldfy --config ./setup/scaffoldfy.json",
"bundle": "pnpm run format:write && pnpm run build",
"build": "node esbuild.config.cjs",
"ci-test": "cross-env NODE_OPTIONS=--experimental-vm-modules NODE_NO_WARNINGS=1 npx vitest --run",
"coverage": "npx make-coverage-badge --output-path ./badges/coverage.svg",
"format": "npx prettier --check .",
"format:fix": "npx prettier --write .",
"lint": "npx eslint .",
"lint:fix": "npx eslint . --fix",
"test": "vitest --run",
"test:watch": "vitest --watch",
"test:coverage": "vitest --coverage",
"typecheck": "tsc --noEmit",
"tsc:watch": "tsc --noEmit --watch",
"local-action": "npx @github/local-action . src/index.ts .env",
"fix:all": "pnpm format:fix && pnpm lint:fix && pnpm typecheck",
"deps:update": "npx taze -r -w && pnpm install",
"deps:update:major": "npx taze major -r -w && pnpm install",
"prepare": "husky"
},
"dependencies": {
"@actions/core": "^1.11.1"
},
"devDependencies": {
"@commitlint/cli": "^19.8.1",
"@commitlint/config-conventional": "^19.8.1",
"@eslint/compat": "^1.3.2",
"@github/local-action": "^5.1.0",
"@pixpilot/dev-config": "^3.1.0",
"@pixpilot/eslint-config": "^2.7.0",
"@types/node": "^24.3.0",
"@typescript-eslint/eslint-plugin": "^8.40.0",
"@typescript-eslint/parser": "^8.40.0",
"@vitest/coverage-v8": "^3.2.4",
"@vitest/ui": "^3.2.4",
"cross-env": "^10.0.0",
"esbuild": "^0.25.9",
"eslint": "^9.33.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-prettier": "^5.5.4",
"husky": "^9.1.7",
"lint-staged": "^16.1.5",
"make-coverage-badge": "^1.2.0",
"prettier": "^3.6.2",
"prettier-eslint": "^16.4.2",
"tsx": "^4.20.4",
"typescript": "^5.9.2",
"vitest": "^3.2.4"
}
}