-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.22 KB
/
Copy pathpackage.json
File metadata and controls
42 lines (42 loc) · 1.22 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
{
"name": "flagsmith-setup-cli",
"version": "1.0.0",
"description": "GitHub Action to install the Flagsmith CLI and authenticate it via OIDC",
"scripts": {
"build": "esbuild src/index.ts --bundle --platform=node --target=node24 --format=cjs --outfile=dist/index.cjs --sourcemap --minify=false",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"all": "npm run typecheck && npm run test && npm run build",
"licenses": "npm ls --omit=dev --all --json > dist/dependencies.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Flagsmith/setup-cli.git"
},
"keywords": [],
"author": "",
"license": "BSD-3-Clause",
"type": "module",
"bugs": {
"url": "https://github.com/Flagsmith/setup-cli/issues"
},
"homepage": "https://github.com/Flagsmith/setup-cli#readme",
"dependencies": {
"@actions/core": "^3.0.1",
"@actions/exec": "^3.0.0",
"@actions/http-client": "^4.0.1",
"@actions/tool-cache": "^4.0.0"
},
"devDependencies": {
"@tsconfig/node24": "^24.0.5",
"@types/node": "^26.2.0",
"esbuild": "^0.28.2",
"typescript": "^7.0.2",
"vitest": "^4.1.10"
},
"private": true,
"engines": {
"node": ">=24"
}
}