-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.27 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 2.27 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "tldraw-in-obsidian",
"version": "1.29.1",
"description": "Integrates Tldraw into Obsidian, allowing users to draw and edit content on a virtual whiteboard.",
"main": "dist/production/main.js",
"private": true,
"scripts": {
"clean": "rm -rf dist && rm -rf node_modules && npm install",
"dev": "NODE_ENV=development tsx ./scripts/build.mts",
"build": "NODE_ENV=production tsx ./scripts/build.mts",
"vite:dev": "vite dev",
"vite:build": "vite build",
"version": "tsx ./scripts/version-bump.mts",
"postinstall": "patch-package",
"package": "tsx ./scripts/package.mts",
"make-release-files": "tsx ./scripts/make-release-files.ts",
"lint": "eslint src scripts",
"format-current": "prettier --write --cache $(git diff --name-only --diff-filter d | xargs)",
"e2e": "wdio run ./wdio.conf.mts"
},
"keywords": [
"obsidian",
"plugin",
"tldraw",
"drawing",
"whiteboard",
"notes"
],
"author": "Sam Alhaqab",
"contributors": [
"Jonathan Mendez <dev@jon-dez.com> (https://github.com/sponsors/jon-dez)",
"Sam Alhaqab"
],
"devDependencies": {
"@eslint/eslintrc": "^3.3.3",
"@eslint/js": "^9.39.2",
"@obsidian-plugin-toolkit/esbuild": "^0.2.0",
"@obsidian-plugin-toolkit/react": "^0.2.0",
"@obsidian-plugin-toolkit/vite": "^0.2.0",
"@types/mocha": "^10.0.10",
"@types/node": "^24.12.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@typescript-eslint/eslint-plugin": "^8.54.0",
"@typescript-eslint/parser": "^8.54.0",
"@vitejs/plugin-react": "^6.0.1",
"@wdio/cli": "^9.26.1",
"@wdio/globals": "^9.26.1",
"@wdio/local-runner": "^9.26.1",
"@wdio/mocha-framework": "^9.26.1",
"builtin-modules": "3.3.0",
"esbuild": "^0.27.2",
"eslint": "^8.57.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-react": "^7.37.5",
"expect-webdriverio": "^5.6.5",
"mocha": "^11.7.5",
"obsidian": "^1.11.4",
"patch-package": "^8.0.0",
"prettier": "^3.8.1",
"prettier-plugin-organize-imports": "^4.3.0",
"tslib": "2.6.3",
"tsx": "^4.21.0",
"typescript": "^5.5.4",
"vite": "^8",
"wdio-obsidian-reporter": "^2.4.0",
"wdio-obsidian-service": "^2.4.0"
},
"dependencies": {
"monkey-around": "^2.3.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"tldraw": "4.5.0-internal.66c28d065c67",
"zustand": "^4.3.9"
}
}