shoedler_crossbow/package.json

29 lines
891 B
JSON
Raw Normal View History

2022-10-08 09:33:37 +00:00
{
"name": "crossbow",
2023-11-07 12:47:55 +00:00
"version": "1.4.0",
"description": "Obsidian plugin to find possible backlinks in your notes (https://obsidian.md)",
"main": "main.js",
"scripts": {
"dev": "node esbuild.config.mjs",
"build": "tsc -noEmit -skipLibCheck && node esbuild.config.mjs production",
2023-05-07 19:39:42 +00:00
"version": "node version-bump.mjs && git add manifest.json versions.json",
"test": "jest --passWithNoTests --verbose",
"test-watch": "jest --watch"
},
"keywords": [],
"author": "shoedler",
2023-04-04 12:44:09 +00:00
"license": "gplv3",
"devDependencies": {
2023-05-07 19:39:42 +00:00
"@types/jest": "^29.5.1",
"@types/node": "^16.11.6",
"@typescript-eslint/eslint-plugin": "5.29.0",
"@typescript-eslint/parser": "5.29.0",
"builtin-modules": "3.3.0",
"esbuild": "0.14.47",
2023-05-07 19:39:42 +00:00
"jest": "^29.5.0",
"obsidian": "latest",
2023-05-07 19:39:42 +00:00
"ts-jest": "^29.1.0",
"tslib": "2.4.0",
"typescript": "4.7.4"
}
2023-11-07 12:47:55 +00:00
}