-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.07 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
{
"name": "setup-nsolid",
"version": "1.0.0",
"description": "Github Action to setup Nsolid",
"main": "index.js",
"type": "module",
"scripts": {
"build": "ncc build -o dist/setup src/setup-nsolid.js && rm -rf dist/setup/package.json",
"format-check": "biome format ./",
"format": "biome format --write ./",
"lint": "biome lint ./",
"lint-fix": "biome lint --apply ./",
"test": "echo \"Tests TODO\" && exit 0"
},
"keywords": [],
"author": "riosje",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/nodesource/setup-nsolid.git"
},
"bugs": {
"url": "https://github.com/nodesource/setup-nsolid/issues"
},
"homepage": "https://github.com/nodesource/setup-nsolid#readme",
"devDependencies": {
"@biomejs/biome": "1.5.3",
"@types/node": "^20.11.20",
"@vercel/ncc": "^0.38.1"
},
"dependencies": {
"@actions/core": "^1.10.1",
"@actions/exec": "^1.1.1",
"@actions/http-client": "^2.2.0",
"@actions/io": "^1.1.3",
"@actions/tool-cache": "^2.0.1",
"semver": "^7.6.0"
}
}