forked from szamsolo/tldraw-in-obsidian
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.21 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
44
{
"name": "tldraw-in-obsidian",
"version": "1.17.1",
"description": "Integrates Tldraw into Obsidian, allowing users to draw and edit content on a virtual whiteboard.",
"main": "main.js",
"scripts": {
"dev": "node esbuild.config.mjs",
"build": "tsc -noEmit -skipLibCheck && node esbuild.config.mjs production",
"dist": "node esbuild.config.mjs production",
"version": "node version-bump.mjs && git add manifest.json versions.json",
"postinstall": "patch-package"
},
"keywords": [
"obsidian",
"plugin",
"tldraw",
"drawing",
"whiteboard",
"notes"
],
"author": "Sam Alhaqab",
"contributors": ["Jonathan Mendez <[email protected]> (https://github.com/sponsors/jon-dez)", "Sam Alhaqab"],
"devDependencies": {
"@types/node": "^16.11.6",
"@types/react": "^18.3.5",
"@types/react-dom": "^18.3.0",
"@typescript-eslint/eslint-plugin": "7.12.0",
"@typescript-eslint/parser": "7.12.0",
"builtin-modules": "3.3.0",
"esbuild": "^0.23.1",
"obsidian": "latest",
"tslib": "2.6.3",
"typescript": "^5.5.4"
},
"dependencies": {
"monkey-around": "^2.3.0",
"patch-package": "^8.0.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"tldraw": "^3.6.0",
"use-debounce": "^9.0.4",
"zustand": "^4.3.9"
}
}