-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
62 lines (62 loc) · 1.44 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
{
"name": "sync-version-history",
"version": "2.2.1",
"description": "Display diffs of the version history from the core Sync and File Recovery plugins and Git.",
"main": "src/main.ts",
"scripts": {
"dev": "cross-env BUILD=dev node esbuild.mjs",
"build": "cross-env BUILD=production node esbuild.mjs",
"release": "standard-version",
"lint": "npx eslint src/",
"test": "jest",
"format": "npx prettier --write src/",
"css": "npx sass --watch src/styles.scss build/styles.css"
},
"standard-version": {
"t": "",
"types": [
{
"type": "perf",
"hidden": false,
"section": "Performance"
},
{
"type": "feat",
"hidden": false,
"section": "Features"
},
{
"type": "fix",
"hidden": false,
"section": "Bug Fixes"
}
],
"releaseCommitMessageFormat": "Version history diff: {{currentTag}}"
},
"keywords": [],
"author": "kometenstaub",
"license": "MIT",
"devDependencies": {
"@types/diff": "5.0.2",
"@types/node": "14.18.36",
"@typescript-eslint/eslint-plugin": "5.53.0",
"@typescript-eslint/parser": "5.53.0",
"builtin-modules": "3.3.0",
"cross-env": "7.0.3",
"css-minify": "2.0.0",
"esbuild": "0.17.10",
"eslint": "8.34.0",
"obsidian": "1.4.4",
"prettier": "2.5.0",
"process": "0.11.10",
"sass": "1.58.3",
"standard-version": "9.5.0",
"ts-jest": "27.1.5",
"tslib": "2.5.0",
"typescript": "4.9.5"
},
"dependencies": {
"diff": "5.1.0",
"diff2html": "3.4.31"
}
}