-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
42 lines (42 loc) · 1.21 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
{
"name": "setup-nu",
"version": "3.16.0",
"actionVer": "v3.16",
"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": "biome lint **/*.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.11.1",
"@actions/tool-cache": "^2.0.1",
"@octokit/rest": "^21.0.2",
"globby": "^14.0.2",
"shelljs": "^0.8.5"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@types/node": "^22.10.2",
"@types/semver": "^7.5.8",
"@types/shelljs": "^0.8.15",
"@vercel/ncc": "^0.38.3",
"cspell": "^8.17.1",
"lefthook": "^1.10.0",
"semver": "^7.6.3",
"typescript": "^5.7.2"
}
}