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
81 lines (81 loc) · 2.59 KB
/
Copy pathpackage.json
File metadata and controls
81 lines (81 loc) · 2.59 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
80
81
{
"name": "github-action-template",
"type": "module",
"version": "0.0.0",
"private": true,
"packageManager": "pnpm@10.33.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",
"pnpm": ">=9.6.0"
},
"scripts": {
"setup": "npx @pixpilot/scaffoldfy --config ./setup/scaffoldfy.json",
"bundle": "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",
"check:all": "npm run format && npm run lint && npm run typecheck && npm run test",
"deps:update": "npx taze -r -w && pnpm install",
"deps:update:major": "npx taze major -r -w && pnpm install",
"prepare": "husky"
},
"dependencies": {
"@actions/core": "^3.0.1"
},
"devDependencies": {
"@commitlint/cli": "^21.0.0",
"@commitlint/config-conventional": "^21.0.0",
"@github/local-action": "^7.0.1",
"@pixpilot/dev-config": "^3.18.0",
"@pixpilot/eslint-config": "^2.10.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@types/node": "^25.6.2",
"@typescript-eslint/eslint-plugin": "^8.59.2",
"@typescript-eslint/parser": "^8.59.2",
"@vitest/coverage-v8": "^4.1.5",
"@vitest/ui": "^4.1.5",
"cross-env": "^10.1.0",
"esbuild": "^0.28.0",
"eslint": "^9.39.4",
"husky": "^9.1.7",
"lint-staged": "^17.0.2",
"make-coverage-badge": "^1.2.0",
"prettier": "^3.8.3",
"prettier-eslint": "^16.4.2",
"semantic-release": "^25.0.3",
"semantic-release-major-tag": "^0.3.2",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"vitest": "^4.1.5"
}
}