-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
66 lines (66 loc) · 1.93 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
58
59
60
61
62
63
64
65
66
{
"name": "semantic-release-pub",
"version": "0.9.0",
"description": "semantic-release plugin to publish a Dart or Flutter package",
"main": "dist/index.js",
"author": "[email protected]",
"license": "MIT",
"type": "module",
"homepage": "https://github.com/zeshuaro/semantic-release-pub",
"repository": {
"type": "git",
"url": "https://github.com/zeshuaro/semantic-release-pub"
},
"keywords": [
"dart",
"flutter",
"publish",
"registry",
"semantic-release",
"version"
],
"files": [
"dist/*"
],
"scripts": {
"build": "tsc",
"test": "vitest run tests --coverage",
"lint": "ESLINT_USE_FLAT_CONFIG=false eslint --ext .ts src tests && prettier --check src/**/*.ts tests/**/*.ts",
"format": "ESLINT_USE_FLAT_CONFIG=false eslint --ext .ts --fix src tests && prettier --write src/**/*.ts tests/**/*.ts"
},
"engines": {
"node": ">=22.11.0"
},
"dependencies": {
"@semantic-release/error": "^4.0.0",
"execa": "^9.5.1",
"google-auth-library": "^9.14.2",
"yaml": "^2.6.0",
"zod": "^3.23.8"
},
"devDependencies": {
"@semantic-release/changelog": "6.0.3",
"@semantic-release/git": "10.0.1",
"@types/common-tags": "1.8.4",
"@types/semantic-release": "20.0.6",
"@types/semantic-release__error": "3.0.3",
"@types/signale": "1.4.7",
"@typescript-eslint/eslint-plugin": "8.14.0",
"@typescript-eslint/parser": "8.14.0",
"@vitest/coverage-v8": "2.1.4",
"common-tags": "1.8.2",
"conventional-changelog-conventionalcommits": "8.0.0",
"eslint": "9.14.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-semistandard": "17.0.0",
"eslint-config-standard": "17.1.0",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-n": "17.13.1",
"eslint-plugin-promise": "7.1.0",
"prettier": "3.3.3",
"semantic-release": "24.2.0",
"typescript": "5.6.3",
"vitest": "2.1.4",
"vitest-mock-extended": "2.0.2"
}
}