-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 922 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 922 Bytes
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
{
"name": "retype-for-obsidian",
"version": "1.2.0",
"description": "Build and preview your documentation with Retype.",
"main": "main.js",
"scripts": {
"dev": "node esbuild.config.mjs",
"build": "npm run lint && node esbuild.config.mjs production",
"lint": "eslint src && tsc -noEmit -skipLibCheck"
},
"keywords": [
"obsidian",
"plugin",
"obsidian-plugin",
"retype",
"documentation",
"generator",
"website"
],
"author": "Retype",
"license": "Apache-2.0",
"devDependencies": {
"@types/node": "^20.11.0",
"@typescript-eslint/parser": "^8.57.1",
"builtin-modules": "^3.3.0",
"esbuild": "^0.20.0",
"eslint": "^9.39.4",
"eslint-plugin-obsidianmd": "^0.1.9",
"obsidian": "latest",
"tslib": "^2.6.0",
"typescript": "^5.3.0"
}
}