@clawmasons/claude-code-agent 0.1.1

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.
Files changed (2) hide show
  1. package/README.md +7 -0
  2. package/package.json +26 -0
package/README.md ADDED
@@ -0,0 +1,7 @@
1
+ # @clawmasons/claude-code-agent
2
+
3
+ Claude Code agent package for Mason
4
+
5
+ ## More Information
6
+
7
+ This package is part of the [Mason](https://github.com/clawmasons/mason) monorepo. See the [main README](https://github.com/clawmasons/mason/blob/main/README.md) for full documentation.
package/package.json ADDED
@@ -0,0 +1,26 @@
1
+ {
2
+ "name": "@clawmasons/claude-code-agent",
3
+ "version": "0.1.1",
4
+ "description": "Claude Code agent package for Mason Chapter",
5
+ "type": "module",
6
+ "main": "./dist/index.js",
7
+ "types": "./dist/index.d.ts",
8
+ "exports": {
9
+ ".": {
10
+ "import": "./dist/index.js",
11
+ "types": "./dist/index.d.ts"
12
+ }
13
+ },
14
+ "scripts": {
15
+ "build": "tsc -p tsconfig.build.json",
16
+ "typecheck": "tsc --noEmit"
17
+ },
18
+ "files": [
19
+ "dist"
20
+ ],
21
+ "license": "MIT",
22
+ "dependencies": {
23
+ "@clawmasons/agent-sdk": "^0.1.1",
24
+ "@clawmasons/shared": "^0.1.1"
25
+ }
26
+ }