mirror of
https://github.com/forketyfork/obsidian-youtrack-fetcher.git
synced 2026-07-22 12:30:26 +00:00
56 lines
1.7 KiB
JSON
56 lines
1.7 KiB
JSON
{
|
|
"name": "obsidian-youtrack-fetcher",
|
|
"version": "0.9.0",
|
|
"description": "Obsidian plugin to fetch YouTrack issues into notes.",
|
|
"main": "main.js",
|
|
"scripts": {
|
|
"dev": "node esbuild.config.mjs",
|
|
"dev:watch": "node esbuild.config.mjs --watch",
|
|
"prod": "node esbuild.config.mjs --production",
|
|
"typecheck": "tsc -noEmit -skipLibCheck",
|
|
"format": "prettier --write .",
|
|
"test": "jest",
|
|
"test:dev": "yarn dev && jest",
|
|
"test:watch": "yarn dev && jest --watch",
|
|
"coverage": "yarn dev && jest --coverage",
|
|
"lint": "eslint .",
|
|
"build": "yarn typecheck && yarn lint && yarn format && yarn prod && yarn test",
|
|
"version": "node version-bump.mjs && git add manifest.json versions.json",
|
|
"build:css": "csso src/styles.src.css --output styles.css",
|
|
"release": "yarn version && git push origin main && git push origin --tags"
|
|
},
|
|
"keywords": [
|
|
"obsidian",
|
|
"plugin",
|
|
"youtrack"
|
|
],
|
|
"author": "Forketyfork",
|
|
"license": "MIT",
|
|
"devDependencies": {
|
|
"@eslint/eslintrc": "^3.3.1",
|
|
"@eslint/js": "^9.27.0",
|
|
"@types/jest": "^29.5.14",
|
|
"@types/lodash": "^4.17.17",
|
|
"@types/node": "^22.15.23",
|
|
"@typescript-eslint/eslint-plugin": "^8.33.0",
|
|
"@typescript-eslint/parser": "^8.33.0",
|
|
"builtin-modules": "^5.0.0",
|
|
"csso-cli": "^4.0.2",
|
|
"esbuild": "^0.25.5",
|
|
"eslint": "^9.27.0",
|
|
"globals": "^16.2.0",
|
|
"jest": "^29.7.0",
|
|
"jest-environment-jsdom": "^30.0.0-beta.3",
|
|
"obsidian": "latest",
|
|
"prettier": "^3.5.3",
|
|
"ts-jest": "^29.3.4",
|
|
"tslib": "^2.8.1",
|
|
"tslint": "^6.1.3",
|
|
"typescript": "^5.8.3"
|
|
},
|
|
"packageManager": "yarn@1.22.22+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e",
|
|
"dependencies": {
|
|
"lodash": "^4.17.21"
|
|
}
|
|
}
|
|
|