generated from obsidianmd/obsidian-sample-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.06 KB
/
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
34
35
36
37
38
39
40
41
42
43
{
"name": "keepsidian",
"version": "1.0.14",
"description": "Sync Google Keep notes to Obsidian",
"main": "src/main.js",
"scripts": {
"dev": "node esbuild.config.mjs",
"build": "tsc -noEmit -skipLibCheck && node esbuild.config.mjs production",
"version": "node version-bump.mjs && git add manifest.json versions.json",
"test": "npx jest"
},
"keywords": [
"obsidian",
"google keep",
"sync",
"plugin"
],
"author": "lc0rp",
"license": "MIT",
"devDependencies": {
"@testing-library/jest-dom": "^6.6.2",
"@types/electron": "^1.4.38",
"@types/jest": "^29.5.14",
"@types/node": "^16.18.104",
"@typescript-eslint/eslint-plugin": "5.29.0",
"@typescript-eslint/parser": "5.29.0",
"builtin-modules": "3.3.0",
"electron": "^32.1.2",
"esbuild": "0.17.3",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"obsidian": "^1.6.6",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"tslib": "2.4.0",
"typescript": "4.7.4"
},
"dependencies": {
"automatonic": "^0.1.1",
"playwright": "^1.45.3",
"puppeteer-chromium-resolver": "^22.0.0"
}
}