-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
42 lines (42 loc) · 1.1 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
{
"name": "@halo-dev/app-store-release-action",
"version": "1.0.0",
"private": true,
"main": "dist/index.js",
"scripts": {
"build": "ncc build -m ./src/index.ts",
"lint": "eslint ./src --ext .js,.cjs,.mjs,.ts,.cts,.mts --ignore-path .gitignore",
"prettier": "prettier --write './src/**/*.{js,ts,css,json,ml,yaml,html}'",
"release": "release-it"
},
"author": {
"name": "@halo-dev",
"url": "https://github.com/halo-dev"
},
"contributors": [
{
"name": "Ryan Wang",
"url": "https://github.com/ruibaby"
}
],
"devDependencies": {
"@types/node": "18.11.9",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"@vercel/ncc": "^0.36.1",
"eslint": "^8.57.0",
"eslint-config-prettier": "^8.10.0",
"eslint-plugin-prettier": "^4.2.1",
"prettier": "^2.8.8",
"release-it": "^15.11.0",
"typescript": "^5.5.4"
},
"dependencies": {
"@actions/core": "^1.10.1",
"@actions/github": "^5.1.1",
"axios": "^1.7.4",
"form-data": "^4.0.0",
"octokit": "^2.1.0",
"yaml": "^2.5.0"
}
}