-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
86 lines (86 loc) · 2.24 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "changesets-publish-slack-action",
"version": "0.0.0-semantic-release",
"type": "module",
"description": "A GitHub Action to publish to Slack after Changesets performs a release",
"author": "SingleStone Consulting",
"license": "MIT",
"private": true,
"packageManager": "pnpm@8.6.7",
"main": "src/index.ts",
"keywords": [],
"scripts": {
"build": "rimraf dist && ncc build --source-map --license licenses.txt",
"format": "prettier --write .",
"format:check": "prettier --check .",
"lint": "eslint --format stylish --max-warnings 0 --cache .",
"lint:fix": "eslint --format stylish --max-warnings 0 --cache . --fix",
"prepare": "is-ci || husky install",
"test": "vitest"
},
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/github": "^5.1.1",
"ofetch": "^1.1.1",
"slack-block-builder": "^2.7.2",
"squirrelly": "^9.0.0",
"ts-dedent": "^2.2.0",
"zod": "^3.21.4"
},
"devDependencies": {
"@semantic-release/exec": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@tsconfig/node-lts": "^18.12.3",
"@tsconfig/strictest": "^2.0.1",
"@types/node": "^20.4.2",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"@vercel/ncc": "^0.36.1",
"eslint": "^8.44.0",
"eslint-plugin-simple-import-sort": "^10.0.0",
"husky": "^8.0.3",
"is-ci": "^3.0.1",
"lint-staged": "^13.2.3",
"prettier": "^3.0.0",
"prettier-plugin-pkg": "^0.18.0",
"rimraf": "^5.0.1",
"semantic-release": "^21.0.7",
"typescript": "^5.1.6",
"vite": "^4.4.4",
"vitest": "^0.33.0"
},
"lint-staged": {
"*.{js,ts,json,md,yml,yaml}": "prettier --write"
},
"prettier": {
"plugins": [
"prettier-plugin-pkg"
]
},
"release": {
"branches": [
"main"
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
[
"@semantic-release/exec",
{
"prepareCmd": "pnpm run build"
}
],
[
"@semantic-release/git",
{
"assets": [
"CHANGELOG.md",
"package.json",
"dist/**"
]
}
],
"@semantic-release/github"
]
}
}