-
Notifications
You must be signed in to change notification settings - Fork 179
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 974 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 974 Bytes
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
{
"name": "compute-sha256",
"version": "0.0.1",
"private": true,
"description": "Compute a sha256 of a file.",
"main": "lib/main.js",
"scripts": {
"build": "tsc",
"format": "prettier --write '**/*.ts'",
"format-check": "prettier --check '**/*.ts'",
"package": "ncc build --external encoding --source-map",
"lint": "eslint --max-warnings 0 src/**/*.ts",
"all": "npm run format && npm run lint && npm run build && npm run package"
},
"keywords": [
"actions",
"node",
"setup"
],
"dependencies": {
"@actions/core": "1.11.1",
"tscommon": "file:../tscommon/tscommon-0.0.0.tgz"
},
"devDependencies": {
"@types/node": "20.19.37",
"@typescript-eslint/eslint-plugin": "6.21.0",
"@typescript-eslint/parser": "6.21.0",
"@vercel/ncc": "0.38.4",
"eslint": "8.57.1",
"eslint-plugin-github": "4.10.2",
"eslint-plugin-prettier": "5.5.5",
"prettier": "3.8.1",
"typescript": "5.9.3"
}
}