generated from obsidianmd/obsidian-sample-plugin
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
33 lines (33 loc) · 846 Bytes
/
package.json
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
{
"name": "pubscale-obsidian",
"version": "0.2.0",
"description": "An obsidian plugin seamlessly to sync markdown notes into PlanetScale tables.",
"main": "main.js",
"scripts": {
"dev": "vite build --watch --mode development",
"build": "tsc -noEmit -skipLibCheck && eslint . && vite build",
"version": "node version-bump.mjs && git add manifest.json versions.json"
},
"keywords": [
"obsidian",
"obsidian-plugin",
"planetscale"
],
"author": "piriwata",
"license": "MIT",
"devDependencies": {
"@types/node": "^18.15.13",
"@typescript-eslint/eslint-plugin": "5.59.0",
"@typescript-eslint/parser": "5.59.0",
"builtin-modules": "3.3.0",
"eslint": "^8.39.0",
"obsidian": "^1.2.5",
"tslib": "2.5.0",
"typescript": "5.0.4",
"vite": "^4.3.1",
"vitest": "^0.30.1"
},
"dependencies": {
"mysql2": "^3.2.3"
}
}