-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
53 lines (53 loc) · 1.32 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
50
51
52
53
{
"name": "action-scw",
"version": "0.0.2",
"description": "",
"main": "lib/main.js",
"type": "module",
"engines": {
"node": ">=20.0",
"pnpm": ">=8.15.6"
},
"packageManager": "[email protected]",
"scripts": {
"build": "tsc",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint src/**/*.ts",
"prettier": "prettier -c src/**/*.ts",
"prettier-fix": "prettier -w src/**/*.ts",
"package": "ncc build -o dist",
"all": "pnpm install && pnpm build && pnpm package"
},
"repository": {
"type": "git",
"url": "git+https://github.com/scaleway/action-scw.git"
},
"keywords": [
"Actions",
"GitHub",
"Actions",
"Typescript",
"Scaleway"
],
"author": "Scaleway",
"devDependencies": {
"@scaleway/eslint-config-react": "^3.18.4",
"@types/node": "^22.10.1",
"@types/shell-quote": "^1.7.5",
"@typescript-eslint/parser": "^7.18.0",
"@vercel/ncc": "^0.38.1",
"eslint": "^8.57.1",
"eslint-plugin-deprecation": "^3.0.0",
"eslint-plugin-tsdoc": "^0.3.0",
"prettier": "^3.4.2",
"typescript": "^5.6.3"
},
"dependencies": {
"@actions/core": "^1.10.1",
"@actions/github": "^6.0.0",
"@actions/http-client": "^2.2.1",
"@actions/io": "^1.1.3",
"@actions/tool-cache": "^2.0.1",
"shell-quote": "^1.8.1"
}
}