generated from obsidianmd/obsidian-sample-plugin
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.27 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
{
"name": "obsidian-inputs",
"version": "1.0.1",
"description": "Help to create inline inputs fields into note that change the actual note",
"main": "main.js",
"scripts": {
"dev": "node esbuild.config.mjs",
"build": "tsc -noEmit && node esbuild.config.mjs production",
"test": "jest",
"version": "node version-bump.mjs && git add manifest.json versions.json",
"bump-patch": "npm version patch && node scripts/update-manifest.js",
"bump-minor": "npm version minor && node scripts/update-manifest.js",
"bump-major": "npm version major && node scripts/update-manifest.js",
"doc-dev": "mdbook serve docsrc --open",
"doc-build": "mdbook build docsrc"
},
"keywords": [],
"author": "Pery mimon",
"license": "MIT",
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/node": "^16.11.6",
"@typescript-eslint/eslint-plugin": "5.29.0",
"@typescript-eslint/parser": "5.29.0",
"babel-jest": "^29.7.0",
"builtin-modules": "3.3.0",
"cross-env": "^7.0.3",
"esbuild": "0.17.3",
"esbuild-plugin-copy": "^2.1.1",
"fs-extra": "^11.2.0",
"jest": "^29.7.0",
"jest-environment-obsidian": "^0.0.1",
"jest-message-util": "^29.7.0",
"jest-mock-extended": "^3.0.7",
"obsidian": "latest",
"ts-jest": "^29.1.2",
"tslib": "2.4.0",
"typescript": "5.5.2"
}
}