forked from urugus/slack-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.36 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.36 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
{
"name": "@urugus/slack-cli",
"version": "0.2.8",
"description": "A command-line tool for sending messages to Slack",
"main": "dist/index.js",
"bin": {
"slack-cli": "./dist/index.js"
},
"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": "eslint src/**/*.ts",
"format": "prettier --write \"src/**/*.{ts,tsx,js,jsx,json,md}\"",
"format:check": "prettier --check \"src/**/*.{ts,tsx,js,jsx,json,md}\"",
"prepublishOnly": "npm run build"
},
"keywords": [
"slack",
"cli",
"command-line",
"messaging",
"api"
],
"author": "urugus",
"publishConfig": {
"access": "public"
},
"license": "MIT",
"dependencies": {
"@slack/web-api": "^7.9.3",
"chalk": "^5.4.1",
"commander": "^14.0.0",
"p-limit": "^3.1.0"
},
"devDependencies": {
"@types/node": "^20.10.0",
"@typescript-eslint/eslint-plugin": "^8.34.1",
"@typescript-eslint/parser": "^8.34.1",
"@vitest/coverage-v8": "^3.2.4",
"eslint": "^9.30.0",
"eslint-config-prettier": "^10.1.5",
"prettier": "^3.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.3.2",
"typescript-eslint": "^8.35.0",
"vitest": "^3.2.4"
},
"engines": {
"node": ">=20.0.0"
}
}