@fezchat/slack 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json ADDED
@@ -0,0 +1,40 @@
1
+ {
2
+ "name": "@fezchat/slack",
3
+ "version": "0.1.0",
4
+ "description": "Explicit Slack app mentions become Fez tasks; progress and results return to the same Slack thread.",
5
+ "type": "module",
6
+ "fez": {
7
+ "type": "extension",
8
+ "parts": {
9
+ "headless": "dist/headless.js",
10
+ "background": true,
11
+ "gui": "dist/gui.js"
12
+ },
13
+ "permissions": [
14
+ "read:channels",
15
+ "read:agents",
16
+ "publish",
17
+ "sign",
18
+ "background",
19
+ "ui",
20
+ "network:slack.com",
21
+ "network:.slack.com"
22
+ ],
23
+ "guiRuntime": "isolated-settings",
24
+ "minFezVersion": "0.2.2"
25
+ },
26
+ "scripts": {
27
+ "build": "esbuild src/headless.ts --bundle --format=esm --platform=node --banner:js=\"import{createRequire as ___cr}from'module';const require=___cr(import.meta.url);\" --outfile=dist/headless.js && esbuild src/gui.tsx --bundle --format=iife --global-name=__fezExt --platform=browser --jsx=transform --jsx-factory=h --outfile=dist/gui.js",
28
+ "check": "tsc --noEmit"
29
+ },
30
+ "dependencies": {
31
+ "ws": "^8.18.0"
32
+ },
33
+ "devDependencies": {
34
+ "@types/react": "^19.2.18"
35
+ },
36
+ "files": [
37
+ "dist",
38
+ "app-manifest.json"
39
+ ]
40
+ }