-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) Β· 1.2 KB
/
package.json
File metadata and controls
36 lines (36 loc) Β· 1.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
{
"name": "obsidian-python-bridge",
"version": "2.0.0",
"description": "π A plugin that lets you write plugins in Python! Yes, it's as crazy as it sounds!",
"main": "main.js",
"scripts": {
"dev": "bun esbuild.config.mjs",
"build": "tsc -noEmit -skipLibCheck && bun esbuild.config.mjs production",
"version": "bun version-bump.mjs && git add manifest.json versions.json",
"bump-version": "bun scripts/bump-version.ts",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix",
"format": "prettier --write \"**/*.{ts,js,json,md,css}\"",
"validate": "eslint . --ext .ts --fix && prettier --write \"**/*.{ts,js,json,md,css}\" && uv run ruff format . && uv run ruff check --fix . && tsc -noEmit -skipLibCheck",
"prepare": "husky"
},
"keywords": [
"obsidian",
"plugin",
"python"
],
"author": "mathe00",
"license": "MIT",
"devDependencies": {
"@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.25.0",
"husky": "^9.1.7",
"obsidian": "^1.8.7",
"prettier": "^3.6.2",
"tslib": "2.4.0",
"typescript": "4.7.4"
}
}