-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.74 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) · 1.74 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
{
"name": "@flydotio/sprites-opencode-plugin",
"version": "0.1.0",
"description": "Use Fly.io Sprites as isolated remote development environments from OpenCode 1 and OpenCode 2.",
"type": "module",
"main": "./src/v2.js",
"exports": {
".": "./src/v2.js",
"./server": "./src/v1.js"
},
"files": [
"src",
"LICENSE",
"README.md"
],
"scripts": {
"check": "npm run format:check && npm run typecheck && npm test",
"format": "prettier --write .",
"format:check": "prettier --check .",
"test": "npm run test:exports && npm run test:v1 && npm run test:v2",
"test:v1": "node --test test/v1.test.js test/opencode1.integration.test.js",
"test:v2": "node --test test/v2.test.js test/opencode2.integration.test.js",
"test:bun": "bun test ./test/plugin.bun.js",
"typecheck": "tsc --noEmit",
"test:exports": "node --test test/exports.test.js"
},
"keywords": [
"opencode",
"opencode-plugin",
"sprites",
"fly.io",
"mcp",
"development-environments",
"sandbox"
],
"homepage": "https://sprites.dev",
"repository": {
"type": "git",
"url": "git+https://github.com/superfly/sprites-opencode-plugin.git"
},
"bugs": {
"url": "https://github.com/superfly/sprites-opencode-plugin/issues"
},
"license": "MIT",
"publishConfig": {
"access": "public"
},
"allowScripts": {
"@opencode-ai/cli": true,
"opencode-ai": true
},
"engines": {
"node": ">=20",
"opencode": ">=1.18.23"
},
"devDependencies": {
"@opencode-ai/cli": "0.0.0-beta-18414",
"@opencode-ai/plugin": "1.18.23",
"@opencode-ai/plugin-v2": "npm:@opencode-ai/plugin@0.0.0-beta-18414",
"opencode-ai": "1.18.23",
"prettier": "^3.9.6",
"typescript": "^7.0.2"
}
}