-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
28 lines (28 loc) · 1.02 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
{
"name": "obsidian-success-plan",
"version": "0.8.6",
"description": "Manage your tasks, projects, key results, and goals within Obsidian. This plugin follows #theGamificationProject's Success Plan Framework.",
"main": "src/main.js",
"scripts": {
"dev": "esbuild src/main.ts --bundle --external:obsidian --outdir=. --target=es2016 --format=cjs --sourcemap=inline --watch",
"build": "esbuild src/main.ts --bundle --external:obsidian --outdir=. --target=es2016 --format=cjs"
},
"keywords": [],
"author": "Joshwin Greene",
"license": "Commons-Clause-1.0 and Apache-2.0",
"devDependencies": {
"@types/node": "^16.11.1",
"@types/react": "^17.0.31",
"esbuild": "0.13.8",
"obsidian": "^0.12.17",
"tslib": "2.3.1",
"typescript": "4.4.4"
},
"dependencies": {
"@types/react-dom": "^17.0.11",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-icons": "^4.3.1",
"react-tiny-fab": "^4.0.4"
}
}