-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 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
41
42
43
44
45
46
47
48
49
50
51
{
"name": "obsidian-friday-plugin",
"version": "0.2.3",
"description": "Friday is an Obsidian plugin that empowers users to focus on content creation by writing Markdown files, while we handle the distribution. From creating websites to content deployment, Friday serves as a creative output assistant, helping users turn their work into publishable sites with ease.",
"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": [
"friday",
"AI",
"md",
"markdown",
"site",
"publish",
"website"
],
"author": "sunwei",
"license": "Apache-2.0",
"devDependencies": {
"@types/js-yaml": "^4.0.9",
"@types/node": "^16.11.6",
"@typescript-eslint/eslint-plugin": "5.29.0",
"@typescript-eslint/parser": "5.29.0",
"builtin-modules": "3.3.0",
"esbuild": "0.14.47",
"obsidian": "latest",
"tslib": "2.4.0",
"typescript": "^4.7.4"
},
"importSort": {
".js, .ts, .tsx": {
"style": "module-alias",
"options": {
"alias": [
"src"
]
}
}
},
"dependencies": {
"@tsconfig/svelte": "^1.0.10",
"esbuild-svelte": "^0.7.1",
"js-yaml": "^4.1.0",
"jszip": "^3.10.1",
"svelte": "^3.49.0",
"svelte-preprocess": "^4.10.7"
}
}