@elizaos/plugin-linear 2.0.3-beta.2 → 2.0.3-beta.3
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 +4 -3
- package/registry-entry.json +51 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@elizaos/plugin-linear",
|
|
3
|
-
"version": "2.0.3-beta.
|
|
3
|
+
"version": "2.0.3-beta.3",
|
|
4
4
|
"description": "Linear integration plugin for ElizaOS (TypeScript)",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"module": "dist/index.js",
|
|
@@ -32,6 +32,7 @@
|
|
|
32
32
|
}
|
|
33
33
|
},
|
|
34
34
|
"files": [
|
|
35
|
+
"registry-entry.json",
|
|
35
36
|
"dist"
|
|
36
37
|
],
|
|
37
38
|
"publishConfig": {
|
|
@@ -69,7 +70,7 @@
|
|
|
69
70
|
},
|
|
70
71
|
"homepage": "https://github.com/elizaos/eliza#readme",
|
|
71
72
|
"dependencies": {
|
|
72
|
-
"@elizaos/core": "2.0.3-beta.
|
|
73
|
+
"@elizaos/core": "2.0.3-beta.3",
|
|
73
74
|
"@linear/sdk": "^86.0.0"
|
|
74
75
|
},
|
|
75
76
|
"devDependencies": {
|
|
@@ -110,5 +111,5 @@
|
|
|
110
111
|
"node": "ESM build available via exports.import"
|
|
111
112
|
}
|
|
112
113
|
},
|
|
113
|
-
"gitHead": "
|
|
114
|
+
"gitHead": "f54b0f4eaed317d59fa7dbcdce20f4cdb0734420"
|
|
114
115
|
}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
{
|
|
2
|
+
"id": "linear",
|
|
3
|
+
"name": "Linear",
|
|
4
|
+
"description": "Linear integration plugin for ElizaOS (TypeScript)",
|
|
5
|
+
"npmName": "@elizaos/plugin-linear",
|
|
6
|
+
"version": "2.0.0-beta.0",
|
|
7
|
+
"source": "bundled",
|
|
8
|
+
"tags": ["linear", "typescript", "project-management"],
|
|
9
|
+
"config": {
|
|
10
|
+
"LINEAR_API_KEY": {
|
|
11
|
+
"type": "secret",
|
|
12
|
+
"required": true,
|
|
13
|
+
"sensitive": true,
|
|
14
|
+
"label": "Api Key",
|
|
15
|
+
"help": "Linear API key for authentication",
|
|
16
|
+
"advanced": false
|
|
17
|
+
},
|
|
18
|
+
"LINEAR_WORKSPACE_ID": {
|
|
19
|
+
"type": "string",
|
|
20
|
+
"required": false,
|
|
21
|
+
"sensitive": false,
|
|
22
|
+
"label": "Workspace Id",
|
|
23
|
+
"help": "Linear workspace ID",
|
|
24
|
+
"advanced": false
|
|
25
|
+
},
|
|
26
|
+
"LINEAR_DEFAULT_TEAM_KEY": {
|
|
27
|
+
"type": "string",
|
|
28
|
+
"required": false,
|
|
29
|
+
"sensitive": false,
|
|
30
|
+
"label": "Default Team Key",
|
|
31
|
+
"help": "Default team key for new issues",
|
|
32
|
+
"advanced": false
|
|
33
|
+
}
|
|
34
|
+
},
|
|
35
|
+
"render": {
|
|
36
|
+
"visible": true,
|
|
37
|
+
"pinTo": [],
|
|
38
|
+
"style": "card",
|
|
39
|
+
"icon": "Square",
|
|
40
|
+
"group": "devtools",
|
|
41
|
+
"groupOrder": 5,
|
|
42
|
+
"actions": ["enable", "configure"]
|
|
43
|
+
},
|
|
44
|
+
"resources": {
|
|
45
|
+
"homepage": "https://github.com/elizaos/eliza#readme",
|
|
46
|
+
"repository": "https://github.com/elizaos/eliza"
|
|
47
|
+
},
|
|
48
|
+
"dependsOn": [],
|
|
49
|
+
"kind": "plugin",
|
|
50
|
+
"subtype": "devtools"
|
|
51
|
+
}
|