-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.18 KB
/
Copy pathpackage.json
File metadata and controls
43 lines (43 loc) · 1.18 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
{
"name": "get-cargo-package-info",
"version": "1.0.5",
"private": true,
"description": "Github Action to get info in a Cargo.toml file",
"main": "lib/main.js",
"scripts": {
"build": "tsc --project tsconfig.build.json",
"format": "prettier --write \"**/*.ts\"",
"format-check": "prettier --check \"**/*.ts\"",
"lint": "eslint src --ext .ts",
"package": "ncc build --source-map --license licenses.txt",
"all": "yarn run build && yarn run format && yarn run lint && yarn run package"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rabbitson87/get-cargo-package-info"
},
"keywords": [
"actions",
"rust",
"cargo",
"package"
],
"author": "Forest Anderson",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.10.1",
"@docker/actions-toolkit": "^0.37.0"
},
"devDependencies": {
"@tsconfig/node20": "^20.1.4",
"@types/node": "^22.1.0",
"@typescript-eslint/parser": "^8.0.1",
"@vercel/ncc": "^0.38.1",
"eslint": "^9.8.0",
"eslint-plugin-github": "^5.0.1",
"eslint-plugin-jest": "^28.7.0",
"js-yaml": "^4.1.0",
"prettier": "^3.3.3",
"typescript": "^5.5.4"
}
}