generated from obsidianmd/obsidian-sample-plugin
-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
40 lines (40 loc) · 1.32 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
{
"name": "tasks-calendar-wrapper",
"version": "0.3.1",
"description": "This is a simple wrapper for Obsidian-Tasks-Calendar (https://github.com/702573N/Obsidian-Tasks-Calendar) and Obsidian-Tasks-Timeline (https://github.com/702573N/Obsidian-Tasks-Timeline).",
"main": "src/main.ts",
"scripts": {
"dev": "cp manifest.json ExampleVault/.obsidian/plugins/tasks-view/ && node esbuild.config.mjs",
"build": "tsc -noEmit -skipLibCheck && node esbuild.config.mjs production",
"version": "node version-bump.mjs && git add manifest.json versions.json",
"eslint": "npx eslint */**.ts",
"eslint:fix": "npx eslint --fix */**.ts ; exit 0"
},
"keywords": [],
"author": "",
"license": "MIT",
"devDependencies": {
"@svgr/webpack": "^6.5.1",
"@types/backbone": "^1.4.15",
"@types/luxon": "^3.2.0",
"@types/node": "^16.11.6",
"@types/parsimmon": "^1.10.6",
"@types/react-dom": "^18.0.11",
"@typescript-eslint/eslint-plugin": "5.29.0",
"@typescript-eslint/parser": "5.29.0",
"builtin-modules": "3.3.0",
"emoji-regex": "^10.2.1",
"esbuild": "0.17.3",
"luxon": "^3.2.1",
"obsidian": "latest",
"parsimmon": "^1.18.1",
"tslib": "2.4.0",
"typescript": "4.7.4"
},
"dependencies": {
"backbone": "^1.4.1",
"eslint": "^8.34.0",
"react": "^18.2.0",
"react-dom": "^18.2.0"
}
}