forked from hustcer/setup-nu
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.3 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
{
"name": "setup-nu",
"version": "3.12.0",
"actionVer": "v3.12",
"description": "A Github Action to Setup a Nushell Environment to Run Nu Scripts or Commands",
"main": "dist/index.js",
"private": true,
"scripts": {
"fmt": "biome format . --write",
"lint": "eslint **/*.ts",
"build": "rm -rf dist/ && ncc build src/index.ts --minify",
"run": "pnpm run build && RUNNER_TOOL_CACHE=./runner/cache RUNNER_TEMP=./runner/temp node dist/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hustcer/setup-nu.git"
},
"author": "hustcer <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/hustcer/setup-nu/issues"
},
"homepage": "https://github.com/hustcer/setup-nu#readme",
"dependencies": {
"@actions/core": "^1.10.1",
"@actions/tool-cache": "^2.0.1",
"@octokit/rest": "^20.1.1",
"globby": "^14.0.1",
"shelljs": "^0.8.5"
},
"devDependencies": {
"@biomejs/biome": "^1.8.2",
"@types/node": "^20.14.9",
"@types/semver": "^7.5.8",
"@types/shelljs": "^0.8.15",
"@typescript-eslint/eslint-plugin": "^7.14.1",
"@typescript-eslint/parser": "^7.14.1",
"@vercel/ncc": "^0.38.1",
"eslint": "^8.57.0",
"lefthook": "^1.6.18",
"semver": "^7.6.2",
"typescript": "^5.5.2"
}
}