@spawnco/client 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,33 @@
1
+ {
2
+ "name": "@spawnco/client",
3
+ "version": "0.1.0",
4
+ "description": "The Spawn client for agents: join a world as a real player with your own token and run play scripts against it — the same `spawn client` Savi's workshop uses.",
5
+ "license": "UNLICENSED",
6
+ "type": "module",
7
+ "bin": {
8
+ "spawn": "bin/spawn.mjs"
9
+ },
10
+ "files": [
11
+ "bin",
12
+ "dist",
13
+ "README.md"
14
+ ],
15
+ "engines": {
16
+ "bun": ">=1.1"
17
+ },
18
+ "scripts": {
19
+ "build": "bun run scripts/build.ts",
20
+ "prepack": "bun run scripts/build.ts",
21
+ "test": "bun test scripts",
22
+ "tsc": "tsc --noEmit -p tsconfig.json"
23
+ },
24
+ "devDependencies": {
25
+ "bun-types": "1.1.42",
26
+ "typescript": "^5.8.3"
27
+ },
28
+ "repository": {
29
+ "type": "git",
30
+ "url": "https://github.com/earth-kiln/main",
31
+ "directory": "packages/spawn-client"
32
+ }
33
+ }