-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.53 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 2.53 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
{
"name": "github-action-nodejs-template",
"version": "0.11.2",
"description": "Template for new Github Actions based on Typescript with the Best Practices and Ready to be Released",
"main": "dist/index.js",
"author": "alberthernandezdev@gmail.com",
"license": "MIT",
"bugs": {
"url": "https://github.com/AlbertHernandez/github-action-nodejs-template/issues"
},
"homepage": "https://github.com/AlbertHernandez/github-action-nodejs-template#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/AlbertHernandez/github-action-nodejs-template.git"
},
"keywords": [
"typescript",
"library",
"template"
],
"engines": {
"node": ">=18.0.0",
"pnpm": ">=9.x"
},
"packageManager": "pnpm@9.14.2",
"type": "module",
"scripts": {
"prepublishOnly": "pnpm i && pnpm build",
"build": "pnpm validate-typescript && pnpm build:clean && pnpm generate-dist",
"test": "rimraf coverage && pnpm test:unit",
"test:unit": "vitest run --coverage",
"lint": "eslint . --ext .js,.ts",
"lint:fix": "eslint . --ext .js,.ts --fix",
"lint:file": "eslint",
"lint:yaml": "chmod +x scripts/lint_yaml.sh && ./scripts/lint_yaml.sh",
"validate-typescript": "tsc -p tsconfig.prod.json --noEmit",
"generate-dist": "ncc build src/index.ts",
"build:clean": "rimraf dist; exit 0",
"prepare": "[ -f .husky/install.mjs ] && node .husky/install.mjs || true",
"typos": "chmod +x scripts/check_typos.sh && ./scripts/check_typos.sh"
},
"devDependencies": {
"@commitlint/cli": "^19.8.1",
"@commitlint/config-conventional": "^19.8.1",
"@commitlint/types": "^19.8.1",
"@swc/cli": "^0.7.9",
"@swc/core": "^1.15.3",
"@types/fs-extra": "^11.0.4",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"@vercel/ncc": "^0.38.3",
"@vitest/coverage-istanbul": "1.3.1",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^5.5.4",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-unicorn": "^56.0.1",
"eslint-plugin-vitest": "^0.4.1",
"fs-extra": "^11.3.2",
"husky": "^9.1.7",
"lint-staged": "^15.5.0",
"prettier": "^3.6.2",
"rimraf": "^5.0.8",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.9.2",
"unplugin-swc": "^1.5.7",
"vite": "^5.4.21",
"vitest": "^1.6.1",
"vitest-mock-extended": "^1.3.1"
},
"files": [
"dist"
],
"dependencies": {
"@actions/core": "^1.11.1"
}
}