familiar-vtt 2.13.0 → 2.13.2
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.
- package/README.md +76 -69
- package/dist/mcp-package/index.mjs +22 -22
- package/package.json +4 -2
package/package.json
CHANGED
|
@@ -1,11 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "familiar-vtt",
|
|
3
|
-
"version": "2.13.
|
|
3
|
+
"version": "2.13.2",
|
|
4
4
|
"mcpName": "com.familiarvtt/familiar",
|
|
5
5
|
"description": "Your AI co-pilot for Foundry VTT. 193 tools across 24 domains — characters, combat, scenes, canvas, audio, voices, images, and more.",
|
|
6
6
|
"type": "module",
|
|
7
7
|
"engines": {
|
|
8
|
-
"node": ">=20"
|
|
8
|
+
"node": ">=20",
|
|
9
|
+
"npm": ">=11.10.0"
|
|
9
10
|
},
|
|
10
11
|
"files": [
|
|
11
12
|
"dist/mcp-package/index.mjs",
|
|
@@ -30,6 +31,7 @@
|
|
|
30
31
|
"build:mcp-package": "node scripts/build-mcp-package.mjs",
|
|
31
32
|
"prepublishOnly": "npm run typecheck && npm run lockfile-lint && npm run license-check && npm run build:schemas && npm run build:mcp-package",
|
|
32
33
|
"deploy": "npm run build && node scripts/deploy.js",
|
|
34
|
+
"deploy:module": "node scripts/deploy-module.mjs",
|
|
33
35
|
"dev": "tsx watch src/server/index.ts",
|
|
34
36
|
"inspect": "npx @modelcontextprotocol/inspector tsx src/server/index.ts",
|
|
35
37
|
"lint": "eslint . && stylelint \"src/**/*.css\"",
|