linear-cli-agents 0.7.0 → 0.7.1
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/bin/dev.js +0 -0
- package/dist/commands/info.js +13 -4
- package/dist/commands/projects/create.d.ts +1 -0
- package/dist/commands/projects/create.js +10 -0
- package/dist/commands/projects/update.d.ts +1 -0
- package/dist/commands/projects/update.js +7 -0
- package/oclif.manifest.json +633 -617
- package/package.json +17 -14
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "linear-cli-agents",
|
|
3
|
-
"version": "0.7.
|
|
3
|
+
"version": "0.7.1",
|
|
4
4
|
"description": "CLI for interacting with Linear, designed for LLMs and agents",
|
|
5
5
|
"author": "Nacho",
|
|
6
6
|
"bin": {
|
|
@@ -105,17 +105,6 @@
|
|
|
105
105
|
}
|
|
106
106
|
}
|
|
107
107
|
},
|
|
108
|
-
"engines": {
|
|
109
|
-
"node": ">=18.0.0"
|
|
110
|
-
},
|
|
111
|
-
"keywords": [
|
|
112
|
-
"linear",
|
|
113
|
-
"cli",
|
|
114
|
-
"llm",
|
|
115
|
-
"agent",
|
|
116
|
-
"project-management"
|
|
117
|
-
],
|
|
118
|
-
"prettier": "@oclif/prettier-config",
|
|
119
108
|
"scripts": {
|
|
120
109
|
"postinstall": "node scripts/postinstall.js || true",
|
|
121
110
|
"build": "shx rm -rf dist && tsc -b",
|
|
@@ -123,8 +112,22 @@
|
|
|
123
112
|
"lint:fix": "eslint . --fix",
|
|
124
113
|
"format": "prettier --write .",
|
|
125
114
|
"format:check": "prettier --check .",
|
|
115
|
+
"postpack": "shx rm -f oclif.manifest.json",
|
|
116
|
+
"prepack": "pnpm run build && oclif manifest && oclif readme",
|
|
126
117
|
"test": "vitest run",
|
|
127
118
|
"test:watch": "vitest",
|
|
128
119
|
"test:coverage": "vitest run --coverage"
|
|
129
|
-
}
|
|
130
|
-
|
|
120
|
+
},
|
|
121
|
+
"engines": {
|
|
122
|
+
"node": ">=18.0.0"
|
|
123
|
+
},
|
|
124
|
+
"keywords": [
|
|
125
|
+
"linear",
|
|
126
|
+
"cli",
|
|
127
|
+
"llm",
|
|
128
|
+
"agent",
|
|
129
|
+
"project-management"
|
|
130
|
+
],
|
|
131
|
+
"packageManager": "pnpm@10.18.1",
|
|
132
|
+
"prettier": "@oclif/prettier-config"
|
|
133
|
+
}
|