-
-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.51 KB
/
Copy pathpackage.json
File metadata and controls
80 lines (80 loc) · 2.51 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "action-publish-release",
"version": "3.3.1",
"description": "A GitHub Action for automatically creating a GitHub Release. Monorepo-compatible.",
"files": [
"lib/"
],
"main": "dist/index.js",
"engines": {
"node": "^20 || ^22 || >=24"
},
"scripts": {
"lint:eslint": "yarn eslint . --cache",
"lint:misc": "prettier '**/*.json' '**/*.md' '!CHANGELOG.md' '**/*.yml' --ignore-path .gitignore --no-error-on-unmatched-pattern",
"lint": "yarn lint:eslint && yarn lint:misc --check",
"lint:fix": "yarn lint:eslint --fix && yarn lint:misc --write",
"build:clean": "yarn rimraf 'lib/*' 'dist/*'",
"build:tsc": "tsc --project tsconfig.build.json",
"build:ncc": "ncc build lib/index.js --out dist",
"build": "yarn build:clean && yarn build:tsc && yarn build:ncc",
"test": "jest",
"test:watch": "jest --watch",
"prepublishOnly": "yarn build && yarn lint && yarn test"
},
"repository": {
"type": "git",
"url": "https://github.com/MetaMask/action-publish-release.git"
},
"keywords": [
"GitHub",
"Actions",
"JavaScript",
"TypeScript",
"npm",
"monorepo"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/MetaMask/action-publish-release/issues"
},
"homepage": "https://github.com/MetaMask/action-publish-release#readme",
"dependencies": {
"@actions/core": "^1.2.7",
"@metamask/action-utils": "^1.0.0",
"@metamask/auto-changelog": "^3.1.0"
},
"devDependencies": {
"@lavamoat/allow-scripts": "^3.0.4",
"@lavamoat/preinstall-always-fail": "^2.0.0",
"@metamask/eslint-config": "^15.0.0",
"@metamask/eslint-config-jest": "^15.0.0",
"@metamask/eslint-config-nodejs": "^15.0.0",
"@metamask/eslint-config-typescript": "^15.0.0",
"@types/jest": "^29.5.0",
"@types/node": "^18.18",
"@vercel/ncc": "^0.36.1",
"eslint": "^9.11.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.3",
"eslint-plugin-import-x": "^4.3.0",
"eslint-plugin-jest": "^28.8.3",
"eslint-plugin-jsdoc": "^50.2.4",
"eslint-plugin-n": "^17.10.3",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-promise": "^7.1.0",
"jest": "^29.7.0",
"prettier": "^3.3.3",
"rimraf": "^3.0.2",
"ts-jest": "^29.1.0",
"typescript": "~5.7.3",
"typescript-eslint": "^8.48.1"
},
"packageManager": "yarn@4.16.0",
"lavamoat": {
"allowScripts": {
"@lavamoat/preinstall-always-fail": false,
"eslint-plugin-import-x>unrs-resolver": false
}
}
}