generated from obsidianmd/obsidian-sample-plugin
-
-
Notifications
You must be signed in to change notification settings - Fork 199
/
package.json
60 lines (60 loc) · 1.87 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
{
"name": "templater-obsidian",
"version": "2.9.1",
"description": "Create and use templates",
"main": "main.js",
"scripts": {
"dev": "node esbuild.config.mjs",
"build": "node esbuild.config.mjs production",
"pretest": "eslint --ignore-path .gitignore src/",
"test-build": "node esbuild.config.mjs production test",
"test-dev": "node esbuild.config.mjs test",
"docs-dev": "mdbook serve docs",
"commit": "cz",
"release": "standard-version -t ''"
},
"keywords": [
"obsidian",
"obsidian-md",
"obsidian-plugin",
"obsidian-md-plugin"
],
"author": "SilentVoid13",
"license": "AGPL-3.0-only",
"devDependencies": {
"@types/chai": "^4.3.4",
"@types/chai-as-promised": "^7.1.5",
"@types/node": "^14.18.33",
"@typescript-eslint/eslint-plugin": "^5.42.1",
"@typescript-eslint/parser": "^5.42.1",
"builtin-modules": "^3.3.0",
"chai": "^4.3.7",
"chai-as-promised": "^7.1.1",
"cz-conventional-changelog": "^3.3.0",
"detect-indent": "6.1.0",
"detect-newline": "3.1.0",
"esbuild": "^0.13.15",
"esbuild-plugin-toml": "^0.0.1",
"eslint": "^8.27.0",
"moment": "^2.29.4",
"obsidian": "^1.7.2",
"standard-version": "^9.5.0",
"stringify-package": "^1.0.1",
"ts-node": "^9.1.1",
"tslib": "^2.4.1"
},
"dependencies": {
"@codemirror/language": "github:lishid/cm-language",
"@codemirror/state": "^6.1.2",
"@codemirror/view": "^6.4.1",
"@popperjs/core": "^2.11.6",
"@silentvoid13/rusty_engine": "^0.4.0",
"child_process": "^1.0.2",
"typescript": "^4.8.4"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}