@gobing-ai/spur-plugin-sdk 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.
Files changed (2) hide show
  1. package/dist/index.js +15586 -0
  2. package/package.json +52 -0
package/package.json ADDED
@@ -0,0 +1,52 @@
1
+ {
2
+ "name": "@gobing-ai/spur-plugin-sdk",
3
+ "version": "0.1.0",
4
+ "description": "Spur Plugin SDK — types, schemas, and runtime for building Spur plugins with trust levels, capability registries, and event hooks.",
5
+ "keywords": [
6
+ "spur",
7
+ "plugin-sdk",
8
+ "coding-agents",
9
+ "bun",
10
+ "plugin-system"
11
+ ],
12
+ "homepage": "https://github.com/gobing-ai/spur#readme",
13
+ "bugs": "https://github.com/gobing-ai/spur/issues",
14
+ "repository": {
15
+ "type": "git",
16
+ "url": "git+https://github.com/gobing-ai/spur.git",
17
+ "directory": "packages/plugin-sdk"
18
+ },
19
+ "license": "Apache-2.0",
20
+ "author": "Robin Min <minlongbing@gmail.com>",
21
+ "type": "module",
22
+ "exports": {
23
+ ".": {
24
+ "types": "./src/index.ts",
25
+ "bun": "./src/index.ts",
26
+ "import": "./dist/index.js",
27
+ "default": "./dist/index.js"
28
+ }
29
+ },
30
+ "files": [
31
+ "dist",
32
+ "README.md"
33
+ ],
34
+ "publishConfig": {
35
+ "access": "public"
36
+ },
37
+ "scripts": {
38
+ "build": "bun build src/index.ts --outfile dist/index.js --target bun",
39
+ "dev": "bun test --watch",
40
+ "prepublishOnly": "bun run build",
41
+ "test": "bun test tests",
42
+ "typecheck": "tsc --noEmit"
43
+ },
44
+ "dependencies": {
45
+ "@gobing-ai/ts-infra": "^0.3.2",
46
+ "zod": "4.4.3"
47
+ },
48
+ "devDependencies": {
49
+ "@types/bun": "1.3.14",
50
+ "typescript": "6.0.3"
51
+ }
52
+ }