moving
Some checks failed
Installer Smoke / installer-smoke (push) Has been cancelled

This commit is contained in:
Oleg Maslov
2026-09-02 10:10:29 +02:00
commit 0c3e2ead3b
3841 changed files with 970576 additions and 0 deletions

View File

@@ -0,0 +1,60 @@
{
"name": "@waggle/marketplace",
"version": "0.1.0",
"description": "Waggle Marketplace — Unified package catalog and installer for skills, plugins, and MCP servers",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"bin": {
"waggle-market": "dist/cli.js"
},
"scripts": {
"build": "tsc",
"dev": "tsx src/cli.ts",
"sync": "tsx src/cli.ts sync",
"scan": "tsx src/cli.ts scan-all",
"audit": "tsx src/cli.ts audit",
"lint": "eslint src/",
"clean": "rm -rf dist/"
},
"dependencies": {
"better-sqlite3": "^11.0.0"
},
"optionalDependencies": {
"mcp-guardian": "^2.4.0",
"adm-zip": "^0.5.16"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.0",
"@types/node": "^20.0.0",
"tsx": "^4.0.0",
"typescript": "^5.5.0"
},
"engines": {
"node": ">=20.0.0"
},
"files": [
"dist/",
"README.md"
],
"keywords": [
"waggle",
"marketplace",
"skills",
"plugins",
"mcp",
"ai-agents",
"claude-code"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/marolinik/waggle"
}
}