@woodpecker-ci/plugin
Version:
Utilities to create a Woodpecker-CI typescript / javascript plugin.
40 lines • 891 B
JSON
{
"name": "@woodpecker-ci/plugin",
"version": "0.2.1",
"license": "Apache-2.0",
"description": "Utilities to create a Woodpecker-CI typescript / javascript plugin.",
"repository": {
"type": "git",
"url": "git+https://codeberg.org/woodpecker-plugins/ts-plugin.git"
},
"homepage": "https://woodpecker-ci.org",
"bugs": {
"url": "https://codeberg.org/woodpecker-plugins/ts-plugin/issues"
},
"keywords": [
"woodpecker",
"woodpecker-ci",
"plugin",
"ci"
],
"type": "module",
"main": "dist/index.cjs",
"types": "dist/index.d.cts",
"files": [
"dist"
],
"devDependencies": {
"@types/node": "22.18.6",
"prettier": "3.6.2",
"tsup": "8.5.0",
"typescript": "5.9.2",
"vitest": "3.2.4"
},
"dependencies": {
"dotenv": "^17.2.1"
},
"scripts": {
"build": "tsup src/index.ts --dts",
"test": "vitest"
}
}