forked from nttld/setup-ndk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.08 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": "setup-ndk",
"version": "1.4.2",
"license": "MIT",
"private": true,
"author": "Raphaël Thériault",
"description": "Setup Android NDK",
"repository": "nttld/setup-ndk",
"keywords": [
"actions",
"node",
"setup",
"ndk"
],
"main": "src/main.ts",
"scripts": {
"build": "ncc build --source-map --license licenses.txt",
"fix": "eslint --ext .ts --fix . && prettier --write .",
"lint": "eslint --ext .ts . && prettier --check .",
"prepare": "husky install"
},
"dependencies": {
"@actions/cache": "^3.2.2",
"@actions/core": "^1.10.1",
"@actions/tool-cache": "^2.0.1",
"ini": "^4.1.1"
},
"devDependencies": {
"@tsconfig/node20": "^20.1.2",
"@types/ini": "^1.3.34",
"@types/node": "^20.8.4",
"@typescript-eslint/eslint-plugin": "^6.15.0",
"@typescript-eslint/parser": "^6.15.0",
"@vercel/ncc": "^0.38.1",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-simple-import-sort": "^10.0.0",
"husky": "^8.0.3",
"prettier": "3.1.1",
"typescript": "^5.3.3"
}
}