@ycodium-ai/plugin-teams 0.1.1 → 0.2.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/README.md +1 -1
- package/assets/ui.js +823 -0
- package/dist/index.js +13732 -410
- package/locales/en.json +300 -0
- package/locales/zh-CN.json +295 -0
- package/package.json +66 -6
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ycodium-ai/plugin-teams",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.2.0",
|
|
4
4
|
"description": "Teams for Ycodium: the board, the roster, the mailbox, and who gets sent work.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"teams",
|
|
@@ -9,18 +9,32 @@
|
|
|
9
9
|
],
|
|
10
10
|
"license": "UNLICENSED",
|
|
11
11
|
"files": [
|
|
12
|
-
"dist"
|
|
12
|
+
"dist",
|
|
13
|
+
"assets",
|
|
14
|
+
"locales"
|
|
13
15
|
],
|
|
14
16
|
"type": "module",
|
|
15
17
|
"publishConfig": {
|
|
16
18
|
"access": "public"
|
|
17
19
|
},
|
|
18
20
|
"devDependencies": {
|
|
21
|
+
"@dnd-kit/core": "^6.3.1",
|
|
22
|
+
"@dnd-kit/modifiers": "^9.0.0",
|
|
23
|
+
"@dnd-kit/sortable": "^10.0.0",
|
|
24
|
+
"@dnd-kit/utilities": "^3.2.2",
|
|
19
25
|
"@effect/vitest": "4.0.0-beta.103",
|
|
26
|
+
"@tailwindcss/node": "^4.3.0",
|
|
27
|
+
"@tailwindcss/oxide": "^4.3.0",
|
|
28
|
+
"@types/react": "~19.2.14",
|
|
29
|
+
"@types/react-dom": "^19.2.3",
|
|
20
30
|
"effect": "4.0.0-beta.103",
|
|
21
31
|
"esbuild": "0.28.1",
|
|
32
|
+
"lucide-react": "^0.564.0",
|
|
33
|
+
"react": "19.2.6",
|
|
34
|
+
"react-dom": "19.2.6",
|
|
35
|
+
"tailwindcss": "^4.0.0",
|
|
22
36
|
"vite-plus": "0.2.2",
|
|
23
|
-
"ycodium-plugin-api": "0.0
|
|
37
|
+
"@ycodium-ai/plugin-api": "0.1.0"
|
|
24
38
|
},
|
|
25
39
|
"ycodium": {
|
|
26
40
|
"plugin": "./dist/index.js",
|
|
@@ -28,13 +42,59 @@
|
|
|
28
42
|
"icon": "users",
|
|
29
43
|
"permissions": [
|
|
30
44
|
{
|
|
31
|
-
"kind": "
|
|
45
|
+
"kind": "commands.dispatch",
|
|
46
|
+
"commands": [
|
|
47
|
+
"thread.create",
|
|
48
|
+
"thread.meta.update",
|
|
49
|
+
"thread.turn.start",
|
|
50
|
+
"thread.session.stop"
|
|
51
|
+
]
|
|
52
|
+
},
|
|
53
|
+
{
|
|
54
|
+
"kind": "process.spawn",
|
|
55
|
+
"programs": [
|
|
56
|
+
"git"
|
|
57
|
+
]
|
|
58
|
+
},
|
|
59
|
+
{
|
|
60
|
+
"kind": "process.workspace"
|
|
61
|
+
}
|
|
62
|
+
],
|
|
63
|
+
"ui": {
|
|
64
|
+
"assets": "./assets",
|
|
65
|
+
"entry": "ui.js",
|
|
66
|
+
"pages": [
|
|
67
|
+
{
|
|
68
|
+
"id": "teams",
|
|
69
|
+
"titleKey": "list.title",
|
|
70
|
+
"icon": "users"
|
|
71
|
+
}
|
|
72
|
+
],
|
|
73
|
+
"panels": [
|
|
74
|
+
{
|
|
75
|
+
"id": "board",
|
|
76
|
+
"titleKey": "board.title",
|
|
77
|
+
"icon": "users"
|
|
78
|
+
}
|
|
79
|
+
],
|
|
80
|
+
"composer": [
|
|
81
|
+
{
|
|
82
|
+
"id": "start",
|
|
83
|
+
"titleKey": "list.title",
|
|
84
|
+
"icon": "users",
|
|
85
|
+
"choicesCommand": "composerChoices",
|
|
86
|
+
"prepareCommand": "prepare",
|
|
87
|
+
"managePageId": "teams"
|
|
88
|
+
}
|
|
89
|
+
],
|
|
90
|
+
"threadAnnotations": {
|
|
91
|
+
"command": "threadAnnotations"
|
|
32
92
|
}
|
|
33
|
-
|
|
93
|
+
}
|
|
34
94
|
},
|
|
35
95
|
"scripts": {
|
|
36
96
|
"build": "node build.mjs",
|
|
37
|
-
"typecheck": "tsgo --noEmit",
|
|
97
|
+
"typecheck": "tsgo --noEmit && tsgo --noEmit -p tsconfig.ui.json",
|
|
38
98
|
"test": "vp test run"
|
|
39
99
|
}
|
|
40
100
|
}
|