-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.38 KB
/
package.json
File metadata and controls
89 lines (89 loc) · 2.38 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "@elizaos/plugin-linear",
"version": "1.2.15",
"description": "Linear integration plugin for ElizaOS",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"exports": {
"./package.json": "./package.json",
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
}
},
"files": [
"dist"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"test": "vitest",
"test:watch": "vitest --watch",
"test:e2e": "elizaos test e2e",
"lint": "eslint . --ext .ts",
"format": "prettier --write \"src/**/*.ts\"",
"format:check": "prettier --check \"src/**/*.ts\"",
"clean": "rm -rf dist .turbo node_modules .turbo-tsconfig.json tsconfig.tsbuildinfo"
},
"repository": {
"type": "git",
"url": "git+https://github.com/elizaos/eliza.git"
},
"keywords": [
"elizaos",
"plugin",
"linear",
"project management",
"issue tracking"
],
"author": "ElizaOS Contributors",
"license": "MIT",
"bugs": {
"url": "https://github.com/elizaos/eliza/issues"
},
"homepage": "https://github.com/elizaos/eliza#readme",
"dependencies": {
"@linear/sdk": "^51.0.0",
"@elizaos/core": "^1.3.1"
},
"devDependencies": {
"@types/node": "^20.12.7",
"@typescript-eslint/eslint-plugin": "^7.7.1",
"@typescript-eslint/parser": "^7.7.1",
"eslint": "^8.57.0",
"prettier": "^3.2.5",
"tsup": "^8.0.2",
"typescript": "^5.4.5",
"vitest": "^1.5.0"
},
"agentConfig": {
"pluginType": "elizaos:plugin:1.0.0",
"pluginParameters": {
"LINEAR_API_KEY": {
"type": "string",
"description": "Linear API key for authentication. Get your API key from: https://linear.app/settings/api",
"required": true,
"sensitive": true
},
"LINEAR_WORKSPACE_ID": {
"type": "string",
"description": "Linear workspace ID. If not provided, will use the default workspace",
"required": false,
"sensitive": false
},
"LINEAR_DEFAULT_TEAM_KEY": {
"type": "string",
"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",
"required": false,
"sensitive": false
}
}
}
}