cuggino 0.0.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/dist/cli.mjs +49014 -0
- package/package.json +37 -0
package/package.json
ADDED
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "cuggino",
|
|
3
|
+
"description": "A dangerous autonomous coding loop focused on specification discussion",
|
|
4
|
+
"version": "0.0.1",
|
|
5
|
+
"author": "mattiamanzati",
|
|
6
|
+
"type": "module",
|
|
7
|
+
"packageManager": "pnpm@10.17.1",
|
|
8
|
+
"bin": {
|
|
9
|
+
"cuggino": "./dist/cli.mjs"
|
|
10
|
+
},
|
|
11
|
+
"scripts": {
|
|
12
|
+
"check": "tsc --noEmit",
|
|
13
|
+
"build": "tsdown",
|
|
14
|
+
"dev": "tsx src/cli.ts",
|
|
15
|
+
"test": "vitest run",
|
|
16
|
+
"test:watch": "vitest",
|
|
17
|
+
"test:e2e": "vitest run --config vitest.e2e.config.ts",
|
|
18
|
+
"ci": "pnpm run check && pnpm run test",
|
|
19
|
+
"prepare": "effect-language-service patch"
|
|
20
|
+
},
|
|
21
|
+
"files": [
|
|
22
|
+
"dist"
|
|
23
|
+
],
|
|
24
|
+
"dependencies": {
|
|
25
|
+
},
|
|
26
|
+
"devDependencies": {
|
|
27
|
+
"effect": "https://pkg.pr.new/Effect-TS/effect-smol/effect@6a720b2",
|
|
28
|
+
"@effect/platform-node": "https://pkg.pr.new/Effect-TS/effect-smol/@effect/platform-node@6a720b2",
|
|
29
|
+
"uuid": "^11.0.0",
|
|
30
|
+
"@effect/language-service": "^0.72.1",
|
|
31
|
+
"@types/node": "^25.0.6",
|
|
32
|
+
"tsdown": "^0.20.1",
|
|
33
|
+
"tsx": "^4.0.0",
|
|
34
|
+
"typescript": "^5.9.3",
|
|
35
|
+
"vitest": "4.0.16"
|
|
36
|
+
}
|
|
37
|
+
}
|