@hasna/oldpal 0.1.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/package.json ADDED
@@ -0,0 +1,71 @@
1
+ {
2
+ "name": "@hasna/oldpal",
3
+ "version": "0.1.0",
4
+ "description": "Your personal AI assistant - terminal first, voice enabled, connector powered",
5
+ "type": "module",
6
+ "bin": {
7
+ "oldpal": "dist/index.js"
8
+ },
9
+ "files": [
10
+ "dist",
11
+ "README.md",
12
+ "LICENSE"
13
+ ],
14
+ "scripts": {
15
+ "dev": "bun run packages/terminal/src/index.tsx",
16
+ "build": "bun run build.ts",
17
+ "build:packages": "turbo run build",
18
+ "typecheck": "turbo run typecheck",
19
+ "test": "turbo run test",
20
+ "lint": "turbo run lint",
21
+ "clean": "turbo run clean && rm -rf node_modules dist",
22
+ "prepublishOnly": "bun run build"
23
+ },
24
+ "dependencies": {},
25
+ "devDependencies": {
26
+ "@anthropic-ai/sdk": "^0.32.0",
27
+ "@types/bun": "latest",
28
+ "@types/react": "^18.3.0",
29
+ "bun-types": "^1.3.8",
30
+ "chalk": "^5.3.0",
31
+ "ink": "^5.0.1",
32
+ "ink-spinner": "^5.0.0",
33
+ "ink-text-input": "^6.0.0",
34
+ "marked": "^15.0.0",
35
+ "marked-terminal": "^7.2.0",
36
+ "react": "^18.3.1",
37
+ "turbo": "^2.3.0",
38
+ "typescript": "^5.7.0"
39
+ },
40
+ "publishConfig": {
41
+ "access": "public",
42
+ "registry": "https://registry.npmjs.org/"
43
+ },
44
+ "repository": {
45
+ "type": "git",
46
+ "url": "git+https://github.com/hasna/oldpal.git"
47
+ },
48
+ "keywords": [
49
+ "ai",
50
+ "assistant",
51
+ "cli",
52
+ "terminal",
53
+ "claude",
54
+ "anthropic",
55
+ "bun",
56
+ "ink"
57
+ ],
58
+ "author": "Hasna",
59
+ "license": "MIT",
60
+ "bugs": {
61
+ "url": "https://github.com/hasna/oldpal/issues"
62
+ },
63
+ "homepage": "https://github.com/hasna/oldpal#readme",
64
+ "packageManager": "pnpm@9.15.0",
65
+ "engines": {
66
+ "bun": ">=1.0.0"
67
+ },
68
+ "workspaces": [
69
+ "packages/*"
70
+ ]
71
+ }