feat: initial structure

This commit is contained in:
Garny 2026-03-31 22:31:16 +05:00
commit 6f361dd723
7 changed files with 3199 additions and 0 deletions

35
package.json Normal file
View file

@ -0,0 +1,35 @@
{
"name": "Workflows",
"version": "1.0.0",
"description": "YouTrack workflows for Workflows",
"main": "index.js",
"scripts": {
"sync": "ytw sync",
"check": "ytw lint --type-check"
},
"repository": {
"type": "git",
"url": ""
},
"author": "",
"license": "ISC",
"ytw": {
"linting": {
"enableEslint": true,
"enableTypeCheck": true,
"maxWarnings": 5
},
"typesFolder": "./types"
},
"dependencies": {
"@jetbrains/youtrack-scripting": "^0.2.1",
"@jetbrains/youtrack-scripting-api": "^2022.1.46592"
},
"devDependencies": {
"dotenv": "^17.0.1",
"eslint": "^9.28.0",
"youtrack-workflow-cli": "^1.0.4",
"typescript": "^5.8.3",
"youtrack-workflow-api-types": "^0.2.1"
}
}