-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.29 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.29 KB
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-crate-action",
"version": "2.0.1",
"description": "Install any Rust crate",
"main": "dist/index.js",
"type": "module",
"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 -o dist --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 <ross@macarthur.io>",
"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": "^3.0.0",
"@extractions/setup-crate": "^0.6.0"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.5",
"@eslint/js": "^10.0.1",
"@types/node": "^24.12.0",
"@types/semver": "^7.7.1",
"@typescript-eslint/eslint-plugin": "^8.57.2",
"@typescript-eslint/parser": "^8.57.2",
"@vercel/ncc": "^0.38.4",
"eslint": "^10.1.0",
"globals": "^17.4.0",
"prettier": "^3.8.1",
"typescript": "^5.9.3"
},
"workspaces": [
"./setup-crate"
]
}