-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.04 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.04 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
{
"name": "crates-io-auth-action",
"version": "1.0.1",
"description": "Get a temporary access token that you can use to interact with crates.io.",
"private": true,
"scripts": {
"package": "tsdown",
"format": "prettier --write .",
"lint": "eslint",
"test": "vitest"
},
"engines": {
"node": ">=20"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rust-lang/crates-io-auth-action.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/rust-lang/crates-io-auth-action/issues"
},
"homepage": "https://github.com/rust-lang/crates-io-auth-action#readme",
"devDependencies": {
"@actions/core": "^2.0.3",
"@types/node": "^20.19.30",
"eslint": "^10.0.0",
"globals": "^17.2.0",
"msw": "^2.12.7",
"prettier": "^3.8.1",
"tsdown": "^0.20.1",
"tslib": "^2.8.1",
"typescript": "^5.9.3",
"typescript-eslint": "^8.54.0",
"vitest": "^4.0.18"
}
}