generated from obsidianmd/obsidian-sample-plugin
-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathpackage.json
52 lines (52 loc) · 1.51 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
{
"name": "obsidian-front-matter-title",
"version": "3.13.1",
"description": "This is a sample plugin for Obsidian (https://obsidian.md)",
"main": "main.js",
"scripts": {
"pack.beta": "node utils/pack-release.mjs beta",
"pack.release": "node utils/pack-release.mjs release",
"dev": "node utils/esbuild.config.mjs",
"build": "tsc -noEmit -skipLibCheck -p ./tsconfig.build.json && node utils/esbuild.config.mjs production",
"version": "node utils/version-bump.mjs && git add manifest.json versions.json",
"test": "jest",
"eslint": "eslint src",
"pretty": "prettier --write *.ts *.json src test --ignore-path package-lock.json"
},
"keywords": [],
"author": "snezhig",
"license": "MIT",
"overrides": {
"semver": ">=7.5.2"
},
"engines": {
"node": ">=12.0.0"
},
"devDependencies": {
"@types/jest": "^29.5.2",
"@types/node": "^20.4.0",
"@typescript-eslint/eslint-plugin": "^5.61.0",
"@typescript-eslint/parser": "^5.61.0",
"adm-zip": "^0.5.10",
"builtin-modules": "^3.3.0",
"esbuild": "^0.18.11",
"eslint": "^8.44.0",
"jest": "^29.6.1",
"jest-mock-extended": "^3.0.4",
"obsidian": "^1.7.2",
"prettier": "^2.8.8",
"ts-debounce": "^4.0.0",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.2.0",
"tslib": "2.6.0",
"typescript": "5.1.6",
"yaml": "^2.3.1"
},
"dependencies": {
"gts": "^3.1.1",
"i18next": "^23.3.0",
"inversify": "^6.0.1",
"reflect-metadata": "^0.1.13"
}
}