-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.04 KB
/
Copy pathpackage.json
File metadata and controls
81 lines (81 loc) · 2.04 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
73
74
75
76
77
78
79
80
81
{
"name": "@phosphorco/bb-plugin-cross-references",
"version": "0.1.0",
"type": "module",
"license": "MIT",
"description": "Create and discover deployment-local exact references between BB resources.",
"author": "Phosphor",
"homepage": "https://github.com/phosphorco/bb-community-plugins/tree/main/plugins/cross-references#readme",
"bugs": {
"url": "https://github.com/phosphorco/bb-community-plugins/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/phosphorco/bb-community-plugins.git",
"directory": "plugins/cross-references"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
},
"keywords": [
"bb",
"bb-plugin",
"cross-references",
"backlinks",
"links",
"resources"
],
"engines": {
"bb": ">=0.39.0 <1.0.0",
"bbPluginSdk": ">=0.4.47"
},
"bb": {
"name": "Cross References",
"description": "Create and discover deployment-local exact references between BB resources.",
"branding": {
"icon": "Link"
},
"server": "./server.ts",
"app": "./app.tsx",
"skills": []
},
"files": [
"dist/",
"README.md",
"ARCHITECTURE.md",
"IMPLEMENTATION.md",
"LICENSE",
"server.ts",
"app.tsx",
"app.css",
"canonical.ts",
"model.ts",
"rpc-contract.ts",
"store.ts",
"test/"
],
"dependencies": {
"zod": "4.3.6"
},
"devDependencies": {
"@get-bb/plugin-sdk": "0.4.47",
"@testing-library/dom": "^10.4.0",
"@testing-library/react": "^16.3.2",
"@types/better-sqlite3": "^7.6.12",
"@types/node": "^22",
"@types/react": "19.2.2",
"@types/react-dom": "19.2.2",
"better-sqlite3": "^12.0.0",
"react": "19.2.1",
"react-dom": "19.2.1",
"typescript": "^5.9.3",
"jsdom": "^26.1.0",
"vitest": "^4.1.1"
},
"scripts": {
"build": "node ../../tools/bb-target-cli.mjs plugin build .",
"test": "node --test --experimental-strip-types test/*.test.ts && vitest run test/*.test.tsx",
"typecheck": "tsc --noEmit"
}
}