-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.6 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.6 KB
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
52
53
54
55
56
57
{
"name": "the-only-ever-plugin",
"version": "1.0.0",
"description": "This is a plugin for Obsidian to sync files to the only ever app.",
"main": "main.js",
"scripts": {
"dev": "webpack --mode development --watch",
"dev2": "node esbuild.config.mjs",
"build2": "NODE_ENV=production webpack",
"build": "tsc -noEmit -skipLibCheck && node esbuild.config.mjs production",
"version": "node version-bump.mjs && git add manifest.json versions.json",
"prepare": "husky install",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
},
"keywords": [],
"author": "",
"license": "MIT",
"type": "module",
"devDependencies": {
"@types/node": "^16.11.6",
"@typescript-eslint/eslint-plugin": "5.29.0",
"@typescript-eslint/parser": "5.29.0",
"bufferutil": "^4.0.7",
"builtin-modules": "3.3.0",
"esbuild": "0.17.3",
"eslint": "^8.42.0",
"husky": "^8.0.3",
"lint-staged": "^13.2.2",
"obsidian": "latest",
"prettier": "2.8.8",
"supports-color": "^8.1.1",
"ts-loader": "^9.4.4",
"tslib": "2.4.0",
"typescript": "4.7.4",
"utf-8-validate": "^5.0.10",
"webpack": "^5.88.2",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1"
},
"dependencies": {
"@types/mdast": "^4.0.3",
"axios": "^1.6.0",
"babel-loader": "^9.1.3",
"install": "^0.13.0",
"mdast-squeeze-paragraphs": "^6.0.0",
"mdast-util-from-markdown": "^2.0.0",
"mdast-util-gfm-table": "^2.0.0",
"mdast-util-math": "^3.0.0",
"micromark-extension-gfm-table": "^2.0.0",
"micromark-extension-math": "^3.0.0",
"npm": "^10.7.0"
}
}