-
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.13 KB
/
Copy pathpackage.json
File metadata and controls
44 lines (44 loc) · 1.13 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": "github-action-typescript",
"version": "1.0.0",
"description": "A GitHub Action written in TypeScript",
"main": "dist/index.js",
"scripts": {
"build": "node scripts/precompile-templates.js && tsc",
"package": "ncc build --source-map --license licenses.txt",
"test": "jest",
"all": "npm run build && npm run package"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ykmr1224/github-pages-quick-index.git"
},
"keywords": [
"actions",
"node",
"setup",
"typescript"
],
"author": "Your Name",
"license": "Apache-2.0",
"dependencies": {
"@actions/core": "^1.10.1",
"@actions/github": "^6.0.0",
"handlebars": "^4.7.8",
"mustache": "^4.2.0"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/node": "^22.10.0",
"@typescript-eslint/eslint-plugin": "^7.1.1",
"@typescript-eslint/parser": "^7.1.1",
"@vercel/ncc": "^0.38.1",
"eslint": "^8.57.0",
"eslint-plugin-jest": "^27.9.0",
"jest": "^29.7.0",
"jest-html-reporters": "^3.1.7",
"prettier": "^3.2.5",
"ts-jest": "^29.1.2",
"typescript": "^5.3.3"
}
}