-
-
Notifications
You must be signed in to change notification settings - Fork 38
/
package.json
40 lines (40 loc) · 1.16 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": "maturin-action",
"version": "1.45.0",
"description": "GitHub Action to install and run a custom maturin command",
"main": "dist/index.js",
"scripts": {
"build": "ncc build src/index.ts -o dist",
"format": "prettier --write **/*.ts",
"format-check": "prettier --check **/*.ts",
"lint": "eslint **/*.ts",
"all": "npm run format && npm run lint && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/PyO3/maturin-action.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/PyO3/maturin-action/issues"
},
"homepage": "https://github.com/PyO3/maturin-action#readme",
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/exec": "^1.1.1",
"@actions/glob": "^0.3.0",
"@actions/tool-cache": "^2.0.1",
"@iarna/toml": "github:AlexTMjugador/iarna-toml#fix/comment-crlf",
"string-argv": "^0.3.1",
"typescript": "^4.6.2"
},
"devDependencies": {
"@types/node": "^18.11.3",
"@typescript-eslint/parser": "^5.40.1",
"@vercel/ncc": "^0.36.0",
"eslint": "^8.26.0",
"eslint-plugin-github": "^4.4.0",
"prettier": "^2.8.8"
}
}