28 lines
543 B
JSON
28 lines
543 B
JSON
{
|
|
"name": "@fusion/plugin-sdk",
|
|
"version": "0.1.0",
|
|
"type": "module",
|
|
"exports": {
|
|
".": {
|
|
"types": "./src/index.ts",
|
|
"import": "./src/index.ts"
|
|
}
|
|
},
|
|
"scripts": {
|
|
"typecheck": "tsc --noEmit --skipLibCheck",
|
|
"test": "vitest run --silent=passed-only --reporter=dot"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^25.5.0",
|
|
"typescript": "^5.7.0",
|
|
"vitest": "^3.1.0"
|
|
},
|
|
"peerDependencies": {
|
|
"@fusion/core": "workspace:*"
|
|
},
|
|
"engines": {
|
|
"node": ">=22.5.0"
|
|
},
|
|
"private": true
|
|
}
|