7eabf6066f
44 lines
1.6 KiB
JSON
44 lines
1.6 KiB
JSON
{
|
|||
"name": "trek-plugin-sdk",
|
|||
"version": "1.2.1",
|
|||
"description": "SDK for building TREK plugins: types, definePlugin, a mock host, manifest validation, and the create-trek-plugin / trek-plugin CLIs.",
|
|||
"type": "module",
|
|||
"license": "MIT",
|
|||
"author": "mauriceboe",
|
|||
"homepage": "https://github.com/mauriceboe/TREK/wiki/Plugin-Development",
|
|||
"repository": { "type": "git", "url": "git+https://github.com/mauriceboe/TREK.git", "directory": "plugin-sdk" },
|
|||
"bugs": { "url": "https://github.com/mauriceboe/TREK/issues" },
|
|||
"engines": { "node": ">=18" },
|
|||
"publishConfig": { "access": "public" },
|
|||
"main": "./dist/index.js",
|
|||
"types": "./dist/index.d.ts",
|
|||
"exports": {
|
|||
".": {
|
|||
"import": { "types": "./dist/index.d.ts", "default": "./dist/index.js" },
|
|||
"require": { "types": "./dist/cjs/index.d.ts", "default": "./dist/cjs/index.js" }
|
|||
},
|
|||
"./testing": {
|
|||
"import": { "types": "./dist/mock-host.d.ts", "default": "./dist/mock-host.js" },
|
|||
"require": { "types": "./dist/cjs/mock-host.d.ts", "default": "./dist/cjs/mock-host.js" }
|
|||
}
|
|||
},
|
|||
"bin": {
|
|||
"trek-plugin-sdk": "./dist/cli/trek-plugin.js",
|
|||
"trek-plugin": "./dist/cli/trek-plugin.js",
|
|||
"create-trek-plugin": "./dist/cli/create.js"
|
|||
},
|
|||
"files": ["dist"],
|
|||
"scripts": {
|
|||
"build": "tsc -p tsconfig.json && tsc -p tsconfig.cjs.json && node scripts/finish-cjs.mjs",
|
|||
"typecheck": "tsc -p tsconfig.json --noEmit",
|
|||
"test": "vitest run",
|
|||
"prepublishOnly": "npm run build && npm test"
|
|||
},
|
|||
"devDependencies": {
|
|||
"@types/node": "^22.0.0",
|
|||
"typescript": "^5.6.0",
|
|||
"vitest": "^2.1.0"
|
|||
},
|
|||
"keywords": ["trek", "plugin", "sdk"]
|
|||
}
|