@freesyntax/notch-cli 0.4.0
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/LICENSE +19 -0
- package/dist/auth-GTGBXOSH.js +16 -0
- package/dist/chunk-MWM5TFY4.js +142 -0
- package/dist/chunk-TJS4W4R5.js +176 -0
- package/dist/compression-AGHTZF7D.js +10 -0
- package/dist/index.js +4764 -0
- package/package.json +55 -0
package/package.json
ADDED
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@freesyntax/notch-cli",
|
|
3
|
+
"version": "0.4.0",
|
|
4
|
+
"description": "Notch CLI — AI-powered coding assistant by Driftrail",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"bin": {
|
|
7
|
+
"notch": "dist/index.js"
|
|
8
|
+
},
|
|
9
|
+
"files": [
|
|
10
|
+
"dist"
|
|
11
|
+
],
|
|
12
|
+
"scripts": {
|
|
13
|
+
"build": "tsup src/index.ts --format esm --dts --clean",
|
|
14
|
+
"build:publish": "tsup src/index.ts --format esm --clean",
|
|
15
|
+
"dev": "tsup src/index.ts --format esm --watch",
|
|
16
|
+
"start": "node dist/index.js",
|
|
17
|
+
"typecheck": "tsc --noEmit",
|
|
18
|
+
"lint": "eslint src/",
|
|
19
|
+
"test": "vitest run",
|
|
20
|
+
"prepublishOnly": "npm run build:publish"
|
|
21
|
+
},
|
|
22
|
+
"dependencies": {
|
|
23
|
+
"@ai-sdk/openai": "^1.2.0",
|
|
24
|
+
"ai": "^4.3.2",
|
|
25
|
+
"chalk": "^5.3.0",
|
|
26
|
+
"commander": "^12.1.0",
|
|
27
|
+
"glob": "^11.0.0",
|
|
28
|
+
"ignore": "^6.0.2",
|
|
29
|
+
"ora": "^8.1.1",
|
|
30
|
+
"simple-git": "^3.27.0",
|
|
31
|
+
"zod": "^3.24.1"
|
|
32
|
+
},
|
|
33
|
+
"devDependencies": {
|
|
34
|
+
"@types/node": "^22.0.0",
|
|
35
|
+
"tsup": "^8.3.6",
|
|
36
|
+
"typescript": "^5.7.0",
|
|
37
|
+
"vitest": "^2.1.9"
|
|
38
|
+
},
|
|
39
|
+
"engines": {
|
|
40
|
+
"node": ">=20.0.0"
|
|
41
|
+
},
|
|
42
|
+
"license": "Apache-2.0",
|
|
43
|
+
"author": "Driftrail <hello@driftrail.com>",
|
|
44
|
+
"repository": {
|
|
45
|
+
"type": "git",
|
|
46
|
+
"url": "git+https://github.com/driftrail/notch-cli.git"
|
|
47
|
+
},
|
|
48
|
+
"keywords": [
|
|
49
|
+
"ai",
|
|
50
|
+
"coding",
|
|
51
|
+
"cli",
|
|
52
|
+
"notch",
|
|
53
|
+
"driftrail"
|
|
54
|
+
]
|
|
55
|
+
}
|