Version bump via changesets (consumed 11 changesets). Forced 0.3.0 instead of changesets' default escalation to 1.0.0 for the pre-1.0 minor bump. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
29 lines
632 B
JSON
29 lines
632 B
JSON
{
|
|
"name": "@fusion-plugin-examples/settings-demo",
|
|
"version": "0.1.3",
|
|
"type": "module",
|
|
"description": "Example Fusion plugin demonstrating settings schema and runtime configuration",
|
|
"keywords": [
|
|
"fusion-plugin"
|
|
],
|
|
"exports": {
|
|
".": {
|
|
"types": "./src/index.ts",
|
|
"import": "./src/index.ts"
|
|
}
|
|
},
|
|
"private": true,
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"test": "vitest run --silent=passed-only --reporter=dot"
|
|
},
|
|
"dependencies": {
|
|
"@fusion/plugin-sdk": "workspace:*"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^25.5.2",
|
|
"typescript": "^5.7.0",
|
|
"vitest": "^3.2.4"
|
|
}
|
|
}
|