-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
57 lines (57 loc) · 1.38 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
{
"name": "@edielemoine/monodeploy-plugin-github-actions",
"version": "1.0.1",
"description": "A monodeploy plugin to report release outcome to GitHub Actions",
"repository": {
"type": "git",
"url": "git+https://github.com/edielemoine/monodeploy-plugin-github-actions.git"
},
"license": "MIT",
"author": "Edie Lemoine <[email protected]>",
"type": "module",
"exports": {
"import": "./dist/index.js",
"require": "./dist/index.cjs",
"default": "./dist/index.js"
},
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"files": [
"dist"
],
"scripts": {
"build": "tsup-node src/index.ts --target node18 --format esm,cjs --out-dir dist"
},
"release": {
"branches": [
"main"
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/npm",
"@semantic-release/github",
"@semantic-release/git"
]
},
"dependencies": {
"@monodeploy/types": "^5.0.0"
},
"devDependencies": {
"@semantic-release/git": "^10.0.0",
"@types/node": "^18.0.0",
"eslint": "^8.0.0",
"prettier": "^2.0.0",
"semantic-release": "^22.0.0",
"tapable": "^2.2.0",
"tsup": "^8.0.0",
"typescript": "^5.4.0"
},
"packageManager": "[email protected]",
"volta": {
"node": "18.20.1"
},
"publishConfig": {
"access": "public"
}
}