-
Notifications
You must be signed in to change notification settings - Fork 37
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.29 KB
/
Copy pathpackage.json
File metadata and controls
50 lines (50 loc) · 1.29 KB
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
50
{
"name": "setup-extract",
"version": "1.0.0",
"description": "Extract archive files for setup utilities",
"repository": "https://github.com/aminya/setup-cpp",
"homepage": "https://github.com/aminya/setup-cpp/tree/master/packages/setup-extract",
"license": "Apache-2.0",
"author": "Amin Yahyaabadi",
"main": "./dist/index.js",
"source": "./src/index.ts",
"type": "module",
"files": [
"dist",
"src",
"tsconfig.json"
],
"scripts": {
"build": "tsc --pretty",
"dev": "tsc --watch --pretty",
"lint.tsc.test": "tsc --noEmit --pretty -p ./__tests__/tsconfig.json",
"lint.tsc": "tsc --noEmit --pretty",
"lint.eslint": "eslint '**/*.{ts,tsx,js,jsx,cjs,mjs,json,yaml}' --no-error-on-unmatched-pattern --cache --cache-location ./.cache/eslint/ --fix",
"prepublishOnly": "pnpm run build",
"test": "jest --coverage"
},
"dependencies": {
"@actions/tool-cache": "^4.0.0",
"@types/node": "26.6.1",
"admina": "^2.0.0",
"ci-log": "workspace:*",
"execa": "7.2.0",
"fs-extra": "^11.3.0",
"which": "4.0.0"
},
"devDependencies": {
"@types/fs-extra": "^11.0.4",
"@types/which": "~3.0.4"
},
"engines": {
"node": ">=12"
},
"keywords": [
"setup",
"extract",
"archive",
"tar",
"zip",
"7zip"
]
}