-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
41 lines (41 loc) · 959 Bytes
/
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
41
{
"name": "margo-action",
"version": "0.1.0",
"description": "Publishes a crate to a Margo registry",
"license": "MIT OR Apache-2.0",
"private": true,
"engines": {
"node": ">=20",
"pnpm": ">=8"
},
"@parcel/resolver-default": {
"packageExports": true
},
"source": "./src/index.ts",
"targets": {
"main": {
"includeNodeModules": true
}
},
"exports": "./dist/main/index.js",
"scripts": {
"build": "parcel build",
"check": "tsc --noEmit",
"fmt": "prettier . --write",
"fmt:check": "prettier . --check"
},
"devDependencies": {
"@parcel/transformer-typescript-types": "2.12.0",
"parcel": "^2.12.0",
"prettier": "^3.2.5",
"typescript": "^5.4.0"
},
"dependencies": {
"@actions/core": "^1.10.1",
"@actions/exec": "^1.1.1",
"@actions/github": "^6.0.0",
"@actions/glob": "^0.5.0",
"@actions/tool-cache": "^2.0.1",
"@octokit/auth-action": "^5.1.1"
}
}