generated from obsidianmd/obsidian-sample-plugin
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
51 lines (51 loc) · 1.42 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
45
46
47
48
49
50
51
{
"name": "obsidian-tldraw-plugin",
"private": true,
"version": "0.1.5",
"description": "An Obsidian plugin to edit and view Tldraw drawings.",
"author": "Julius Gamanyi",
"repository": {
"type": "git",
"url": "https://github.com/juliusgb/obsidian-tldraw-plugin.git"
},
"license": "MIT",
"main": "main.js",
"scripts": {
"dev": "node esbuild.config.mjs",
"build": "tsc -p tsconfig.build.json -noEmit -skipLibCheck && node esbuild.config.mjs production",
"version": "node version-bump.mjs && git add manifest.json versions.json",
"test": "jest --config jest.config.ts"
},
"dependencies": {
"@tldraw/tldraw": "1.29.2",
"@types/react": "18.0.14",
"@types/react-dom": "18.0.5",
"eslint": "8.22.0",
"mobx": "6.6.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-scripts": "5.0.1",
"nanoid": "^3.3.4"
},
"devDependencies": {
"@swc-node/jest": "^1.5.2",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@types/jest": "^29.0.0",
"@types/node": "^16.11.6",
"@types/react": "18.0.14",
"@types/react-dom": "18.0.5",
"@typescript-eslint/eslint-plugin": "5.29.0",
"@typescript-eslint/parser": "5.29.0",
"builtin-modules": "3.3.0",
"esbuild": "0.14.47",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.0.2",
"jest-environment-jsdom": "^29.0.2",
"obsidian": "^0.15.4",
"ts-jest": "^29.0.0",
"ts-node": "^10.9.1",
"tslib": "2.4.0",
"typescript": "4.7.4"
}
}