@elizaos/plugin-linear 1.2.12 → 1.2.15
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 +25 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@elizaos/plugin-linear",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.15",
|
|
4
4
|
"description": "Linear integration plugin for ElizaOS",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"module": "dist/index.js",
|
|
@@ -51,7 +51,7 @@
|
|
|
51
51
|
"homepage": "https://github.com/elizaos/eliza#readme",
|
|
52
52
|
"dependencies": {
|
|
53
53
|
"@linear/sdk": "^51.0.0",
|
|
54
|
-
"@elizaos/core": "1.
|
|
54
|
+
"@elizaos/core": "^1.3.1"
|
|
55
55
|
},
|
|
56
56
|
"devDependencies": {
|
|
57
57
|
"@types/node": "^20.12.7",
|
|
@@ -62,5 +62,28 @@
|
|
|
62
62
|
"tsup": "^8.0.2",
|
|
63
63
|
"typescript": "^5.4.5",
|
|
64
64
|
"vitest": "^1.5.0"
|
|
65
|
+
},
|
|
66
|
+
"agentConfig": {
|
|
67
|
+
"pluginType": "elizaos:plugin:1.0.0",
|
|
68
|
+
"pluginParameters": {
|
|
69
|
+
"LINEAR_API_KEY": {
|
|
70
|
+
"type": "string",
|
|
71
|
+
"description": "Linear API key for authentication. Get your API key from: https://linear.app/settings/api",
|
|
72
|
+
"required": true,
|
|
73
|
+
"sensitive": true
|
|
74
|
+
},
|
|
75
|
+
"LINEAR_WORKSPACE_ID": {
|
|
76
|
+
"type": "string",
|
|
77
|
+
"description": "Linear workspace ID. If not provided, will use the default workspace",
|
|
78
|
+
"required": false,
|
|
79
|
+
"sensitive": false
|
|
80
|
+
},
|
|
81
|
+
"LINEAR_DEFAULT_TEAM_KEY": {
|
|
82
|
+
"type": "string",
|
|
83
|
+
"description": "Default team key for new issues when no team is specified. Use the team key (e.g., ENG, ELIZA, COM2) not the team name",
|
|
84
|
+
"required": false,
|
|
85
|
+
"sensitive": false
|
|
86
|
+
}
|
|
87
|
+
}
|
|
65
88
|
}
|
|
66
89
|
}
|