This repository has been archived by the owner on May 22, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
64 lines (64 loc) · 1.45 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": "sample-plugin",
"version": "0.0.0",
"description": "<Sample_Plugin>",
"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/"
},
"standard-version": {
"t": "",
"types": [
{
"type": "perf",
"hidden": false,
"section": "Performance"
},
{
"type": "feat",
"hidden": false,
"section": "Features"
},
{
"type": "fix",
"hidden": false,
"section": "Bug Fixes"
}
],
"releaseCommitMessageFormat": "<Sample_Plugin>: {{currentTag}}"
},
"keywords": [],
"author": "kometenstaub",
"license": "MIT",
"devDependencies": {
"@types/jest": "^27.0.3",
"@types/node": "^14.14.37",
"@typescript-eslint/eslint-plugin": "^5.19.0",
"@typescript-eslint/parser": "^5.19.0",
"builtin-modules": "^3.2.0",
"cross-env": "^7.0.3",
"esbuild": "^0.14.25",
"eslint": "^8.10.0",
"jest": "^27.4.3",
"obsidian": "^0.13.30",
"prettier": "2.5.0",
"process": "^0.11.10",
"standard-version": "^9.3.1",
"ts-jest": "^27.0.7",
"tslib": "^2.2.0",
"typescript": "^4.5.2"
},
"dependencies": {
"@codemirror/language": "^0.20.0",
"@lezer/generator": "^0.16.0",
"@lezer/lr": "^0.16.1",
"css-minify": "^2.0.0",
"lang-criticmarkup": "github:kometenstaub/lang-criticmarkup",
"sass": "^1.53.0"
}
}