-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 914 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 914 Bytes
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
{
"name": "setup-flutter",
"version": "1.0.0",
"description": "Set up Flutter SDK for GitHub Actions",
"scripts": {
"build": "tsc",
"test": "vitest run --reporter=verbose",
"test:coverage": "vitest run --coverage",
"lint": "biome check .",
"format": "biome check --write .",
"package": "node build.mjs"
},
"repository": {
"type": "git",
"url": "https://github.com/koji-1009/setup-flutter.git"
},
"author": "koji-1009",
"license": "MIT",
"dependencies": {
"@actions/cache": "^6.0.0",
"@actions/core": "^3.0.0",
"@actions/exec": "^3.0.0",
"@actions/http-client": "^4.0.0",
"@actions/io": "^3.0.2",
"@actions/tool-cache": "^4.0.0",
"semver": "^7.7.4"
},
"devDependencies": {
"@biomejs/biome": "2.4.10",
"@types/node": "^24.12.2",
"@types/semver": "^7.7.1",
"@vitest/coverage-v8": "^4.1.4",
"esbuild": "^0.28.0",
"typescript": "^6.0.2",
"vitest": "^4.0.18"
}
}