-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
42 lines (42 loc) · 1.18 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": "@moonrepo/setup-toolchain",
"version": "0.3.2",
"description": "A GitHub action to setup and cache the proto and moon toolchains.",
"main": "dist/index.js",
"scripts": {
"build": "ncc build ./index.ts && ncc build ./post.ts --out ./dist/post",
"check": "pnpm run lint && pnpm run test && pnpm run typecheck",
"deps": "pnpm update --latest --interactive",
"lint": "eslint --ext .ts,.js --fix .",
"test": "echo 'Not yet'",
"test:input": "ts-node ./index.ts",
"typecheck": "tsc --noEmit"
},
"repository": {
"type": "git",
"url": "https://github.com/moonrepo/setup-toolchain"
},
"author": "Miles Johnson",
"license": "MIT",
"dependencies": {
"@actions/cache": "^3.2.2",
"@actions/core": "^1.10.1",
"@actions/glob": "^0.4.0",
"@actions/tool-cache": "^2.0.1",
"execa": "^5.1.1"
},
"devDependencies": {
"@types/node": "^20.10.4",
"@vercel/ncc": "^0.38.1",
"eslint": "^8.56.0",
"eslint-config-moon": "^2.0.13",
"prettier": "^3.1.1",
"prettier-config-moon": "^1.1.2",
"ts-node": "^10.9.2",
"tsconfig-moon": "^1.3.0",
"typescript": "^5.3.3"
},
"engines": {
"node": ">=16.0.0"
}
}