superclawd 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,67 @@
1
+ {
2
+ "name": "superclawd",
3
+ "version": "0.1.0",
4
+ "description": "Claude Code, supercharged — your team's standards, every session. The superclawd CLI loads your workspace's skills, agents, commands, workflows, and live directives into Claude Code as a plugin.",
5
+ "author": "SuperClawd <support@superclawd.com>",
6
+ "license": "SEE LICENSE IN LICENSE",
7
+ "homepage": "https://superclawd.com",
8
+ "repository": {
9
+ "type": "git",
10
+ "url": "https://github.com/superclawd-ai/superclawd"
11
+ },
12
+ "bugs": {
13
+ "url": "https://github.com/superclawd-ai/superclawd/issues"
14
+ },
15
+ "keywords": [
16
+ "superclawd",
17
+ "claude-code",
18
+ "claude",
19
+ "plugin",
20
+ "skills",
21
+ "agents",
22
+ "mcp",
23
+ "ai-assistant",
24
+ "coding-standards",
25
+ "model-context-protocol"
26
+ ],
27
+ "engines": {
28
+ "node": ">=20"
29
+ },
30
+ "type": "module",
31
+ "main": "dist/index.js",
32
+ "bin": {
33
+ "superclawd": "dist/index.js"
34
+ },
35
+ "files": ["dist", "README.md", "LICENSE"],
36
+ "scripts": {
37
+ "build": "node build.mjs",
38
+ "dev": "node build.mjs && tsx src/index.ts",
39
+ "typecheck": "tsc --noEmit",
40
+ "lint": "eslint 'src/**/*.{ts,tsx}'",
41
+ "lint:fix": "eslint 'src/**/*.{ts,tsx}' --fix",
42
+ "format": "prettier --check 'src/**/*.{ts,tsx}'",
43
+ "format:fix": "prettier --write 'src/**/*.{ts,tsx}'",
44
+ "selftest": "tsx test/mcp-selftest.ts",
45
+ "test": "node build.mjs && tsx test/mcp-selftest.ts",
46
+ "prepublishOnly": "npm run build",
47
+ "publish:npm": "npm publish",
48
+ "version:bump": "npm version patch --no-git-tag-version"
49
+ },
50
+ "dependencies": {
51
+ "@modelcontextprotocol/sdk": "^1.7.0",
52
+ "zod": "^3.24.2"
53
+ },
54
+ "devDependencies": {
55
+ "@eslint/js": "^9.39.1",
56
+ "@types/node": "^22.10.0",
57
+ "@typescript-eslint/eslint-plugin": "^8.44.1",
58
+ "@typescript-eslint/parser": "^8.44.1",
59
+ "esbuild": "^0.24.0",
60
+ "eslint": "^9.36.0",
61
+ "eslint-config-prettier": "^10.1.8",
62
+ "eslint-plugin-prettier": "^5.5.4",
63
+ "prettier": "^3.6.2",
64
+ "tsx": "^4.19.0",
65
+ "typescript": "^5.7.0"
66
+ }
67
+ }