generated from Otto-J/Obsidian-Vue-Starter
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
45 lines (45 loc) · 1.52 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
{
"name": "sync-to-xlog",
"version": "0.2.1",
"description": "Publish your obsidian file to xlog.app",
"main": "main.js",
"scripts": {
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore",
"type-check": "vue-tsc --noEmit -p tsconfig.app.json --composite false",
"dev": "npm run lint && vite build --watch",
"dev2": " vite build --watch",
"build": "npm run type-check && vite build ",
"format": "prettier --write src/",
"updateVersion": "tsx scripts/updateVersion.ts",
"pub": "zip -r dist.zip main.js manifest.json styles.css && gh release create 0.2.0 main.js styles.css manifest.json dist.zip "
},
"keywords": [],
"author": "Otto-J@github",
"homepage": "https://github.com/Otto-J/Obsidian-sync-xlog",
"devDependencies": {
"@rushstack/eslint-patch": "^1.5.1",
"@tsconfig/node18": "^2.0.1",
"@types/node": "^18.18.6",
"@typescript-eslint/eslint-plugin": "5.32.0",
"@typescript-eslint/parser": "5.32.0",
"@vitejs/plugin-vue": "^4.4.0",
"@vue/eslint-config-prettier": "^7.1.0",
"@vue/eslint-config-typescript": "^11.0.3",
"@vue/tsconfig": "^0.4.0",
"builtin-modules": "3.3.0",
"dotenv": "^16.3.1",
"dotenv-expand": "^10.0.0",
"eslint": "^8.52.0",
"eslint-plugin-vue": "^9.17.0",
"obsidian": "latest",
"prettier": "^2.8.8",
"tslib": "2.4.0",
"typescript": "5.2.2",
"vite": "^4.5.0",
"vue": "^3.3.6",
"vue-tsc": "^1.8.19"
},
"dependencies": {
"crossbell": "^1.9.0"
}
}