@tarcisiopgs/lisa 0.9.2 → 0.9.4
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/dist/index.js +1519 -318
- package/package.json +23 -5
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tarcisiopgs/lisa",
|
|
3
|
-
"version": "0.9.
|
|
3
|
+
"version": "0.9.4",
|
|
4
4
|
"description": "Deterministic autonomous issue resolver — structured AI agent loop for Linear/Trello",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|
|
@@ -9,10 +9,16 @@
|
|
|
9
9
|
},
|
|
10
10
|
"scripts": {
|
|
11
11
|
"build": "tsup",
|
|
12
|
-
"dev": "
|
|
12
|
+
"dev": "tsx src/index.ts",
|
|
13
13
|
"check": "biome check src/",
|
|
14
14
|
"format": "biome format --write src/",
|
|
15
|
-
"lint": "biome lint src/"
|
|
15
|
+
"lint": "biome lint src/",
|
|
16
|
+
"typecheck": "tsc --noEmit",
|
|
17
|
+
"test": "vitest run",
|
|
18
|
+
"test:watch": "vitest",
|
|
19
|
+
"test:coverage": "vitest run --coverage",
|
|
20
|
+
"ci": "concurrently -n lint,typecheck,test \"pnpm lint\" \"pnpm typecheck\" \"pnpm test\"",
|
|
21
|
+
"prepare": "husky"
|
|
16
22
|
},
|
|
17
23
|
"dependencies": {
|
|
18
24
|
"@clack/prompts": "^1.0.1",
|
|
@@ -22,11 +28,18 @@
|
|
|
22
28
|
"yaml": "^2.8.2"
|
|
23
29
|
},
|
|
24
30
|
"devDependencies": {
|
|
31
|
+
"@biomejs/biome": "^2.4.3",
|
|
25
32
|
"@types/node": "^22.13.4",
|
|
33
|
+
"@vitest/coverage-v8": "^4.0.18",
|
|
34
|
+
"concurrently": "^9.2.1",
|
|
35
|
+
"husky": "^9.1.7",
|
|
36
|
+
"lint-staged": "^16.2.7",
|
|
26
37
|
"tsup": "^8.4.0",
|
|
27
38
|
"tsx": "^4.19.3",
|
|
28
|
-
"typescript": "^5.9.3"
|
|
39
|
+
"typescript": "^5.9.3",
|
|
40
|
+
"vitest": "^4.0.18"
|
|
29
41
|
},
|
|
42
|
+
"packageManager": "pnpm@10.29.3",
|
|
30
43
|
"publishConfig": {
|
|
31
44
|
"access": "public"
|
|
32
45
|
},
|
|
@@ -36,5 +49,10 @@
|
|
|
36
49
|
},
|
|
37
50
|
"files": [
|
|
38
51
|
"dist"
|
|
39
|
-
]
|
|
52
|
+
],
|
|
53
|
+
"lint-staged": {
|
|
54
|
+
"*.ts": [
|
|
55
|
+
"biome check --write"
|
|
56
|
+
]
|
|
57
|
+
}
|
|
40
58
|
}
|