@codespring-app/use-agent 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,65 @@
1
+ {
2
+ "name": "@codespring-app/use-agent",
3
+ "version": "0.1.0",
4
+ "description": "Server and React SDKs for the CodeSpring Agents runtime",
5
+ "license": "UNLICENSED",
6
+ "repository": {
7
+ "type": "git",
8
+ "url": "git+https://github.com/CodeSpringApp/use-agent-sdk.git"
9
+ },
10
+ "homepage": "https://github.com/CodeSpringApp/use-agent-sdk#readme",
11
+ "bugs": {
12
+ "url": "https://github.com/CodeSpringApp/use-agent-sdk/issues"
13
+ },
14
+ "type": "module",
15
+ "sideEffects": false,
16
+ "files": [
17
+ "dist",
18
+ "docs/screenshots",
19
+ "README.md"
20
+ ],
21
+ "exports": {
22
+ ".": {
23
+ "types": "./dist/index.d.ts",
24
+ "import": "./dist/index.js"
25
+ },
26
+ "./react": {
27
+ "types": "./dist/react.d.ts",
28
+ "import": "./dist/react.js"
29
+ },
30
+ "./package.json": "./package.json"
31
+ },
32
+ "scripts": {
33
+ "build": "tsup src/index.ts src/react.tsx --format esm --dts --clean --out-dir dist",
34
+ "showcase": "vite examples/showcase --host 127.0.0.1",
35
+ "showcase:build": "vite build examples/showcase --outDir ../../dist-showcase --emptyOutDir",
36
+ "test": "bun test",
37
+ "typecheck": "tsc -p tsconfig.json --noEmit",
38
+ "check": "bun run typecheck && bun run test && bun run build"
39
+ },
40
+ "peerDependencies": {
41
+ "react": ">=18.0.0"
42
+ },
43
+ "peerDependenciesMeta": {
44
+ "react": {
45
+ "optional": true
46
+ }
47
+ },
48
+ "devDependencies": {
49
+ "@types/bun": "latest",
50
+ "@types/react": "^19.1.0",
51
+ "@types/react-dom": "^19.1.0",
52
+ "react": "^19.1.0",
53
+ "react-dom": "^19.1.0",
54
+ "tsup": "^8.5.0",
55
+ "typescript": "^5.9.0",
56
+ "vite": "^7.1.0"
57
+ },
58
+ "engines": {
59
+ "node": ">=20"
60
+ },
61
+ "publishConfig": {
62
+ "access": "public",
63
+ "provenance": true
64
+ }
65
+ }