forked from juliang22/ObsidianTimestampNotes
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
39 lines (39 loc) · 1.17 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
{
"name": "obsidian-timestamp-notes",
"version": "1.0.8",
"description": "This plugin allows side-by-side notetaking with videos. Annotate your notes with timestamps to directly control the video and remember where each note comes from.",
"main": "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"
},
"keywords": [],
"author": "",
"license": "MIT",
"devDependencies": {
"@types/node": "^16.18.37",
"@types/react": "^18.0.9",
"@types/react-dom": "^18.0.4",
"@typescript-eslint/eslint-plugin": "^5.2.0",
"@typescript-eslint/parser": "^5.2.0",
"builtin-modules": "^3.2.0",
"esbuild": "0.13.12",
"obsidian": "^1.2.8",
"tslib": "2.3.1",
"typescript": "4.4.4"
},
"dependencies": {
"@types/express": "^4.17.17",
"@types/mime-types": "^2.1.1",
"@types/xml": "^1.0.8",
"detect-file-encoding-and-language": "^2.3.3",
"express": "^4.18.2",
"http-proxy-middleware": "^2.0.6",
"mime-types": "^2.1.35",
"react": "^18.1.0",
"react-dom": "^18.1.0",
"react-player": "^2.10.1",
"xml": "^1.0.1"
}
}