forked from SilentVoid13/Templater
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.04 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
{
"name": "templater-obsidian",
"version": "0.4.3",
"description": "Create and use templates",
"main": "main.js",
"scripts": {
"dev": "rollup --config rollup.config.js -w",
"build": "rollup --config rollup.config.js"
},
"keywords": [
"obsidian",
"obsidian-md",
"obsidian-plugin",
"obsidian-md-plugin"
],
"author": "SilentVoid13",
"license": "GNU AGPLv3",
"devDependencies": {
"@rollup/plugin-commonjs": "^15.1.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^9.0.0",
"@rollup/plugin-typescript": "^6.0.0",
"@types/node": "^14.14.8",
"countries-list": "^2.5.6",
"obsidian": "https://github.com/obsidianmd/obsidian-api/tarball/master",
"obsidian-sample-plugin": "https://github.com/obsidianmd/obsidian-api/tarball/master",
"rollup": "^2.33.3",
"tslib": "^2.0.3",
"typescript": "^4.0.3"
},
"dependencies": {
"axios": "^0.21.0",
"child_process": "^1.0.2",
"debug": "^4.2.0",
"moment": "^2.29.1",
"supports-color": "^7.2.0"
}
}