@namera-ai/cli 0.0.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,62 @@
1
+ {
2
+ "author": "Vedant Chainani <vedant@namespace.ninja>",
3
+ "bin": {
4
+ "namera": "dist/index.mjs"
5
+ },
6
+ "bugs": {
7
+ "url": "https://github.com/thenamespace/namera/issues"
8
+ },
9
+ "dependencies": {
10
+ "@effect/platform-node": "4.0.0-beta.35",
11
+ "@ethereumjs/wallet": "^10.0.0",
12
+ "@namera-ai/sdk": "workspace:*",
13
+ "dotenv": "^17.3.1",
14
+ "effect": "4.0.0-beta.35",
15
+ "json-nd": "^1.0.0",
16
+ "viem": "^2.47.5"
17
+ },
18
+ "description": "Agent-first smart account interface with session keys and scoped permissions, enabling fully local multichain automation.",
19
+ "devDependencies": {
20
+ "@namera-ai/config": "workspace:*",
21
+ "@types/node": "^25.5.0",
22
+ "tsdown": "^0.21.4",
23
+ "typescript": "^5.9.3"
24
+ },
25
+ "files": [
26
+ "dist",
27
+ "README.md"
28
+ ],
29
+ "homepage": "https://github.com/thenamespace/namera#readme",
30
+ "keywords": [
31
+ "namera",
32
+ "smart accounts",
33
+ "account abstraction",
34
+ "session keys",
35
+ "wallet automation",
36
+ "agent wallets",
37
+ "agents",
38
+ "multichain",
39
+ "web3 cli",
40
+ "passkeys",
41
+ "scoped permissions",
42
+ "local first",
43
+ "automation"
44
+ ],
45
+ "license": "Apache-2.0",
46
+ "name": "@namera-ai/cli",
47
+ "publishConfig": {
48
+ "access": "public"
49
+ },
50
+ "repository": {
51
+ "type": "git",
52
+ "url": "https://github.com/thenamespace/namera"
53
+ },
54
+ "scripts": {
55
+ "build": "tsdown",
56
+ "dev": "tsdown --watch",
57
+ "start": "node dist/index.mjs"
58
+ },
59
+ "sideEffects": false,
60
+ "type": "module",
61
+ "version": "0.0.0"
62
+ }