-
-
Notifications
You must be signed in to change notification settings - Fork 55
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.33 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.33 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
45
46
47
48
{
"name": "maturin-action",
"version": "1.50.1",
"type": "module",
"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": "^3.0.0",
"@actions/exec": "^3.0.0",
"@actions/glob": "^0.6.1",
"@actions/tool-cache": "^4.0.0",
"@iarna/toml": "github:AlexTMjugador/iarna-toml#fix/comment-crlf",
"string-argv": "^0.3.1",
"undici": "^7.21.0"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.1",
"@eslint/js": "^9.24.0",
"@types/node": "^25.2.1",
"@typescript-eslint/parser": "^8.29.0",
"@vercel/ncc": "^0.38.3",
"eslint": "^9.24.0",
"eslint-plugin-github": "^6.0.0",
"globals": "^17.3.0",
"prettier": "^3.5.2",
"typescript": "^5.9.3"
},
"overrides": {
"undici": "^7.21.0"
}
}