-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.24 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.24 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
{
"name": "@urugus/slack-cli",
"version": "0.20.21",
"description": "A command-line tool for sending messages to Slack",
"main": "dist/index.js",
"bin": {
"slack-cli": "dist/index.js"
},
"files": ["dist"],
"scripts": {
"build": "tsc",
"dev": "ts-node src/index.ts",
"start": "node dist/index.js",
"test": "vitest",
"test:watch": "vitest --watch",
"test:coverage": "vitest --coverage",
"lint": "biome lint .",
"lint:fix": "biome lint --write .",
"format": "biome format --write .",
"format:check": "biome check .",
"check": "biome check .",
"check:fix": "biome check --write .",
"prepublishOnly": "npm run build"
},
"keywords": ["slack", "cli", "command-line", "messaging", "api"],
"author": "urugus",
"publishConfig": {
"access": "public"
},
"license": "MIT",
"dependencies": {
"@slack/web-api": "7.15.0",
"chalk": "5.6.2",
"commander": "14.0.3",
"p-limit": "7.3.0",
"semver": "7.7.4"
},
"devDependencies": {
"@biomejs/biome": "2.4.10",
"@types/node": "25.5.0",
"@types/semver": "7.7.1",
"@vitest/coverage-v8": "4.1.2",
"ts-node": "10.9.2",
"typescript": "6.0.2",
"vitest": "4.1.2"
},
"engines": {
"node": ">=20.0.0"
}
}