generated from joshmgross/action-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) Β· 1.41 KB
/
package.json
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
{
"name": "guestbook",
"version": "0.0.3",
"description": "An Action π¬ to create a Guestbook πβ in your Repository π",
"main": "dist/index.js",
"private": true,
"engines": {
"node": ">=20.0.0 <21.0.0"
},
"scripts": {
"build": "tsc",
"pack": "ncc build src/index.ts",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint **/*.ts --cache --fix",
"format": "prettier --write **/*.ts",
"format-check": "prettier --check **/*.ts",
"all": "npm run build && npm run format && npm run lint && npm run pack"
},
"repository": {
"type": "git",
"url": "git+https://github.com/joshmgross/guestbook.git"
},
"keywords": [
"Actions",
"node"
],
"author": "joshmgross",
"license": "MIT",
"bugs": {
"url": "https://github.com/joshmgross/guestbook/issues"
},
"homepage": "https://github.com/joshmgross/guestbook#readme",
"dependencies": {
"@actions/core": "^1.10.1",
"@actions/github": "^6.0.0"
},
"devDependencies": {
"@types/node": "^20.11.8",
"@typescript-eslint/eslint-plugin": "^6.19.1",
"@typescript-eslint/parser": "^6.19.1",
"@vercel/ncc": "^0.38.1",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-simple-import-sort": "^10.0.0",
"prettier": "^3.2.4",
"typescript": "^5.3.3"
}
}