arki 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/package.json ADDED
@@ -0,0 +1,56 @@
1
+ {
2
+ "name": "arki",
3
+ "version": "0.0.1",
4
+ "description": "AI Agent Programming Assistant",
5
+ "type": "module",
6
+ "main": "dist/index.js",
7
+ "types": "dist/index.d.ts",
8
+ "bin": {
9
+ "arki": "./bin/arki.js"
10
+ },
11
+ "scripts": {
12
+ "dev": "NODE_OPTIONS='--import ./register-md.mjs' tsx src/index.ts",
13
+ "dev:watch": "NODE_OPTIONS='--import ./register-md.mjs' tsx watch src/index.ts",
14
+ "build": "tsup",
15
+ "start": "node dist/index.js",
16
+ "typecheck": "tsc --noEmit",
17
+ "test": "vitest run",
18
+ "test:watch": "vitest",
19
+ "test:coverage": "vitest run --coverage",
20
+ "test:e2e": "vitest run --testNamePattern='E2E'"
21
+ },
22
+ "keywords": [
23
+ "ai",
24
+ "agent",
25
+ "cli",
26
+ "coding",
27
+ "assistant"
28
+ ],
29
+ "author": "arki.moe",
30
+ "license": "MIT",
31
+ "repository": {
32
+ "type": "git",
33
+ "url": "https://github.com/your-username/arki.git"
34
+ },
35
+ "packageManager": "pnpm@10.15.1",
36
+ "engines": {
37
+ "node": ">=18"
38
+ },
39
+ "files": [
40
+ "dist",
41
+ "bin",
42
+ "README.md",
43
+ "LICENSE"
44
+ ],
45
+ "dependencies": {
46
+ "openai": "^6.15.0"
47
+ },
48
+ "devDependencies": {
49
+ "@types/node": "^25.0.3",
50
+ "@vitest/coverage-v8": "^4.0.16",
51
+ "tsup": "^8.5.1",
52
+ "tsx": "^4.21.0",
53
+ "typescript": "^5.9.3",
54
+ "vitest": "^4.0.16"
55
+ }
56
+ }