-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 847 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 847 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
{
"name": "esy-github-action",
"version": "1.0.0",
"main": "index.js",
"author": "Wojtek Czekalski <me@wczekalski.com>",
"license": "MIT",
"private": false,
"scripts": {
"fmt": "prettier --write .",
"fmt:check": "prettier --check .",
"typecheck": "tsc",
"build": "ncc build index.ts -o dist"
},
"dependencies": {
"@actions/artifact": "^2.1.7",
"@actions/cache": "3.x",
"@actions/core": "1.x",
"@actions/exec": "1.x",
"@actions/github": "^6.0.0",
"@actions/tool-cache": "^2.0.1",
"@types/semver": "^7.7.0",
"semver": "^7.7.2",
"tar": "^7.1.0",
"typescript": "5.x",
"validate-npm-package-name": "^5.0.1"
},
"devDependencies": {
"@types/tar": "^6.1.13",
"@types/validate-npm-package-name": "^4.0.2",
"@vercel/ncc": "^0.33.0",
"prettier": "2.5.1"
}
}