This commit is contained in:
63
packages/cli/package.json
Normal file
63
packages/cli/package.json
Normal file
@@ -0,0 +1,63 @@
|
||||
{
|
||||
"name": "@waggle/cli",
|
||||
"version": "0.1.0",
|
||||
"description": "Waggle CLI — interactive AI agent with persistent memory",
|
||||
"type": "module",
|
||||
"main": "dist/index.js",
|
||||
"types": "dist/index.d.ts",
|
||||
"exports": {
|
||||
".": {
|
||||
"types": "./dist/index.d.ts",
|
||||
"import": "./dist/index.js"
|
||||
}
|
||||
},
|
||||
"bin": {
|
||||
"waggle": "bin/waggle.js"
|
||||
},
|
||||
"files": [
|
||||
"dist",
|
||||
"bin"
|
||||
],
|
||||
"license": "MIT",
|
||||
"author": "Marko Markovic",
|
||||
"homepage": "https://github.com/marolinik/waggle-os/tree/main/packages/cli#readme",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/marolinik/waggle-os.git",
|
||||
"directory": "packages/cli"
|
||||
},
|
||||
"bugs": {
|
||||
"url": "https://github.com/marolinik/waggle-os/issues"
|
||||
},
|
||||
"keywords": [
|
||||
"waggle",
|
||||
"ai",
|
||||
"agent",
|
||||
"cli",
|
||||
"memory",
|
||||
"llm"
|
||||
],
|
||||
"engines": {
|
||||
"node": ">=20"
|
||||
},
|
||||
"publishConfig": {
|
||||
"access": "public"
|
||||
},
|
||||
"scripts": {
|
||||
"build": "tsc",
|
||||
"test": "node ../../node_modules/vitest/vitest.mjs run --root ../.. --config vitest.config.ts packages/cli/tests/commands.test.ts packages/cli/tests/admin.test.ts packages/cli/tests/renderer.test.ts packages/cli/tests/memory-persistence-hard.test.ts packages/cli/tests/auth.test.ts packages/cli/tests/mode-detector.test.ts packages/cli/tests/comprehensive-e2e.test.ts packages/cli/tests/cli-runtime.test.ts",
|
||||
"dev": "tsx src/index.ts"
|
||||
},
|
||||
"dependencies": {
|
||||
"@waggle/core": "*",
|
||||
"@waggle/agent": "*",
|
||||
"@waggle/weaver": "*",
|
||||
"@anthropic-ai/sdk": "^0.78.0",
|
||||
"chalk": "^5.4.1"
|
||||
},
|
||||
"devDependencies": {
|
||||
"tsx": "^4.21.0",
|
||||
"typescript": "^5.9.3",
|
||||
"vitest": "^4.0.18"
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user