generated from obsidianmd/obsidian-sample-plugin
-
Notifications
You must be signed in to change notification settings - Fork 90
/
package.json
64 lines (64 loc) · 1.97 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
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "obsidian-omnivore",
"version": "1.10.4",
"description": "This is an Omnivore plugin for Obsidian.",
"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",
"lint": "eslint ./src --ext .ts",
"lint:fix": "eslint ./src --ext .ts --fix",
"format": "prettier --write ./src/**/*.ts",
"test": "jest",
"test:watch": "jest --watch",
"test:ci": "jest --ci --reporters='default' --reporters='./github-actions-reporter'",
"test:results": "jest --json --outputFile=results.json",
"test:coverage": "jest --coverage --coverageReporters json-summary",
"test:coverage:junit": "jest --coverage --testResultsProcessor='./node_modules/jest-junit-reporter'"
},
"keywords": [],
"author": "",
"license": "MIT",
"devDependencies": {
"@popperjs/core": "^2.11.6",
"@semantic-release/changelog": "^6.0.2",
"@semantic-release/exec": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@types/diff-match-patch": "^1.0.32",
"@types/jest": "^29.4.0",
"@types/lodash": "^4.14.194",
"@types/luxon": "^3.1.0",
"@types/markdown-escape": "^1.1.0",
"@types/mustache": "^4.2.2",
"@typescript-eslint/eslint-plugin": "5.29.0",
"@typescript-eslint/parser": "5.29.0",
"builtin-modules": "3.3.0",
"esbuild": "0.14.47",
"eslint": "^8.53.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"jest": "^29.4.3",
"jest-cli": "^29.4.3",
"jest-junit-reporter": "^1.1.0",
"obsidian": "^1.2.8",
"prettier": "^3.2.5",
"semantic-release": "^19.0.5",
"ts-jest": "^29.0.5",
"tslib": "2.4.0",
"typescript": "4.7.4"
},
"dependencies": {
"@omnivore-app/api": "^1.0.3",
"diff-match-patch": "^1.0.5",
"lodash": "^4.17.21",
"luxon": "^3.1.1",
"markdown-escape": "^2.0.0",
"mustache": "^4.2.0",
"out-of-character": "^1.2.1"
},
"volta": {
"node": "18.18.0",
"yarn": "1.22.19"
}
}