forked from ColinPitrat/update-release
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
49 lines (49 loc) · 1.29 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
{
"name": "update-existing-release",
"version": "1.3.4",
"description": "A smarter way to make fresh build assets continuously available and edit releases, with Github actions",
"main": "./dist/main.js",
"scripts": {
"bundle": "webpack --mode production",
"test": "webpack --mode development",
"test-watch": "webpack --mode development --watch",
"test-compile": "tsc -p ./"
},
"keywords": [
"update",
"existing",
"release",
"github",
"action",
"ci",
"build",
"actions"
],
"author": "Isaac Shelton",
"license": "ISC",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^2.17.0",
"@typescript-eslint/parser": "^2.17.0",
"eslint": "^6.8.0",
"eslint-loader": "^3.0.3",
"fancy-log": "^1.3.3",
"ts-loader": "^6.2.2",
"typescript": "^3.9.9",
"v8-compile-cache": "^2.3.0",
"webpack": "^5.73.0",
"webpack-cli": "^4.10.0",
"yargs": "^16.2.0"
},
"dependencies": {
"@actions/core": "^1.10.1",
"@actions/github": "^6.0.0",
"@octokit/core": "^5.1.0",
"@octokit/plugin-retry": "^6.0.1",
"@octokit/plugin-throttling": "^8.1.3",
"@octokit/rest": "^20.0.2",
"@octokit/types": "^12.4.0",
"@types/mime-types": "^2.1.4",
"dotenv": "^16.4.1",
"mime-types": "^2.1.35"
}
}