-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.29 KB
/
Copy pathpackage.json
File metadata and controls
52 lines (52 loc) · 1.29 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
{
"name": "linear-axi",
"version": "0.1.0",
"description": "AXI wrapper for the Linear MCP server",
"type": "module",
"engines": {
"node": ">=20"
},
"bin": {
"linear-axi": "bin/linear-axi"
},
"files": [
"bin",
"docs/demo.webm",
"skills",
"src",
"LICENSE",
"README.md"
],
"scripts": {
"build:skill": "node scripts/build-skill.js",
"demo": "PATH=\"$PWD/bin:$PATH\" vhs docs/demo.tape",
"check": "node --check bin/linear-axi && node --check bin/linear-axi.js && node --check src/*.js && node --check src/commands/*.js && node --check src/lib/*.js && node --check scripts/*.js && npm run build:skill -- --check && node --test",
"prepublishOnly": "npm run check",
"test": "node --test"
},
"keywords": [
"linear",
"mcp",
"cli",
"axi",
"agent",
"agent-skills"
],
"author": "AnonymousMorris",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/AnonymousMorris/linear-axi.git"
},
"bugs": {
"url": "https://github.com/AnonymousMorris/linear-axi/issues"
},
"homepage": "https://github.com/AnonymousMorris/linear-axi#readme",
"publishConfig": {
"access": "public"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.29.0",
"axi-sdk-js": "^0.1.8"
}
}