forked from r0adkll/sign-android-release
-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
48 lines (48 loc) · 1.17 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
{
"name": "zipalign-sign-android-release",
"version": "2.0.0",
"private": true,
"description": "GitHub action used to zipalign and sign Android release packages",
"main": "lib/main.js",
"type": "module",
"scripts": {
"build": "ncc build src/main.ts -o lib --external encoding",
"test": "jest",
"prepare": "husky"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kevin-david/zipalign-sign-android-release.git"
},
"lint-staged": {
"**/*": "eslint --cache --fix"
},
"keywords": [
"actions",
"node",
"setup"
],
"author": "kevin-david",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.10.1",
"@actions/exec": "^1.1.0",
"@actions/io": "^1.1.1"
},
"devDependencies": {
"@eslint/js": "^9.8.0",
"@stylistic/eslint-plugin": "^2.6.1",
"@types/eslint__js": "^8.42.3",
"@types/jest": "^29.5.12",
"@types/node": "^20.0.0",
"@vercel/ncc": "^0.38.1",
"eslint": "^9.8.0",
"husky": "^9.1.4",
"jest": "^29.7.0",
"jest-circus": "^29.7.0",
"lint-staged": "^15.2.8",
"ts-jest": "^29.2.4",
"typescript": "^5.5.4",
"typescript-eslint": "^8.0.0"
}
}