-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.6 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 1.6 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "@tylerwarburton/sprite-core",
"version": "0.5.8",
"description": "OpenClaw SpriteCore plugin \u2014 in-gateway asset + TTS + STT data plane for multi-state avatars",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/Tyler-RNG/sprite-core.git",
"directory": "packages/plugin"
},
"author": "Tyler Warburton",
"license": "MIT",
"files": [
"index.ts",
"src/**/*.ts",
"!src/**/*.test.ts",
"scripts",
"template",
"ui-dist",
".agents",
"openclaw.plugin.json",
"tsconfig.json",
"LICENSE",
"README.md",
"dist"
],
"scripts": {
"build": "tsc",
"prepack": "pnpm run build:ui && tsc",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"build:ui": "pnpm --filter @tylerwarburton/sprite-core-ui build",
"dev:ui": "pnpm --filter @tylerwarburton/sprite-core-ui dev"
},
"dependencies": {
"jszip": "^3.10.1",
"sharp": "^0.34.0"
},
"devDependencies": {
"@types/jszip": "^3.4.1",
"openclaw": "^2026.5.6",
"typescript": "^5.6.0",
"vitest": "^2.0.0"
},
"peerDependencies": {
"openclaw": ">=2026.5.0"
},
"peerDependenciesMeta": {
"openclaw": {
"optional": true
}
},
"openclaw": {
"extensions": [
"./index.ts"
],
"install": {
"npmSpec": "@tylerwarburton/sprite-core",
"defaultChoice": "npm",
"minHostVersion": ">=2026.4.10"
},
"compat": {
"pluginApi": ">=2026.4.15-beta.1"
},
"build": {
"openclawVersion": "2026.4.15-beta.1"
}
},
"publishConfig": {
"access": "public"
}
}