-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.68 KB
/
Copy pathpackage.json
File metadata and controls
71 lines (71 loc) · 1.68 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
{
"name": "spotme",
"version": "1.2.3",
"description": "SpotMe - gym mode for agentic coding. Works with OpenCode and Pi.",
"author": {
"name": "wtfzambo"
},
"type": "module",
"main": "./dist/index.js",
"exports": {
".": "./dist/index.js",
"./opencode": "./dist/opencode.js"
},
"files": [
"dist",
"src"
],
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wtfzambo/spotme.git"
},
"scripts": {
"build": "bun build src/index.ts src/opencode.ts --outdir dist --target bun",
"typecheck": "tsc --noEmit",
"lint": "eslint src",
"lint:fix": "eslint src --fix",
"format": "prettier --write src"
},
"keywords": [
"pi-package",
"opencode-plugin",
"spotme",
"gym-mode",
"coding-agent"
],
"pi": {
"extensions": [
"./src/pi.ts"
],
"image": "https://raw.githubusercontent.com/wtfzambo/spotme/refs/heads/main/imgs/spotme.png"
},
"dependencies": {
"@opencode-ai/plugin": "^1.14.0",
"@sinclair/typebox": "^0.34.0"
},
"peerDependencies": {
"@earendil-works/pi-coding-agent": "*"
},
"peerDependenciesMeta": {
"@earendil-works/pi-coding-agent": {
"optional": true
}
},
"devDependencies": {
"@earendil-works/pi-coding-agent": "^0.74.0",
"@types/bun": "^1.1.0",
"@types/node": "^22.0.0",
"@typescript-eslint/eslint-plugin": "8.47.0",
"@typescript-eslint/parser": "8.47.0",
"backlog.md": "^1.45.1",
"eslint": "^9.39.1",
"eslint-config-prettier": "10.1.8",
"eslint-plugin-prettier": "^5.1.3",
"prettier": "^3.2.4",
"typescript": "^5.7.0",
"typescript-eslint": "^8.47.0"
}
}