-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
29 lines (29 loc) · 857 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
{
"name": "slack-notify",
"version": "1.0.1",
"main": "dist/index.js",
"author": "dojineko <[email protected]>",
"license": "MIT",
"scripts": {
"build": "ncc build src/index.ts --license licenses.txt",
"test": "npm run test:tsc && npm run test:biome && npm run test:vitest",
"test:tsc": "tsc --noEmit",
"test:biome": "biome ci .",
"test:vitest": "vitest run",
"fmt": "npm run fmt:biome && npm run fmt:prettier",
"fmt:biome": "biome check --apply-unsafe .",
"fmt:prettier": "prettier --write ."
},
"dependencies": {
"@actions/core": "1.10.1",
"@actions/github": "6.0.0",
"@biomejs/biome": "1.5.1",
"@slack/types": "2.11.0",
"@slack/webhook": "7.0.2",
"@vercel/ncc": "0.38.1",
"prettier": "3.2.1",
"typescript": "5.3.3",
"vite": "5.0.11",
"vitest": "1.2.0"
}
}