-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
40 lines (40 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
{
"name": "setup-crate-action",
"version": "1.4.0",
"description": "Install any Rust crate",
"main": "dist/index.js",
"private": true,
"scripts": {
"fmt": "prettier --write **/*.ts",
"lint": "eslint **/*.ts",
"build": "npm run -w setup-crate build && rm -rf dist/ && ncc build src/index.ts --minify",
"run": "npm run build && RUNNER_TOOL_CACHE=./runner/cache RUNNER_TEMP=./runner/temp node dist/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/extractions/setup-crate.git"
},
"author": "Ross MacArthur <[email protected]>",
"license": "MIT OR Apache-2.0",
"bugs": {
"url": "https://github.com/extractions/setup-crate/issues"
},
"homepage": "https://github.com/extractions/setup-crate#readme",
"dependencies": {
"@actions/core": "^1.10.1",
"@extractions/setup-crate": "^0.5.0"
},
"devDependencies": {
"@types/node": "^20.14.10",
"@types/semver": "^7.5.8",
"@typescript-eslint/eslint-plugin": "^7.16.0",
"@typescript-eslint/parser": "^7.16.0",
"@vercel/ncc": "^0.38.1",
"eslint": "^8.56.0",
"prettier": "^3.3.2",
"typescript": "^5.5.3"
},
"workspaces": [
"./setup-crate"
]
}