-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.45 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.45 KB
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
{
"name": "obsidian-markplace-plugin",
"version": "0.3.0",
"description": "This is a sample plugin for Obsidian (https://obsidian.md)",
"main": "main.js",
"scripts": {
"dev": "cross-env NODE_ENV=development node esbuild.config.mjs",
"build": "tsc -noEmit -skipLibCheck && cross-env NODE_ENV=production node esbuild.config.mjs",
"version": "node version-bump.mjs && git add manifest.json versions.json",
"test": "jest"
},
"keywords": [],
"author": "iSplasher",
"repository": {
"type": "git",
"url": "https://github.com/iSplasher/obsidian-markplace-plugin"
},
"license": "MIT",
"devDependencies": {
"@codemirror/search": "^6.0.0",
"@codemirror/language": "^6.0.0",
"@codemirror/state": "^6.0.0",
"@codemirror/view": "^6.0.0",
"@testing-library/jest-dom": "^5.16.5",
"@types/codemirror": "^5.60.8",
"@types/jest": "^29.5.3",
"@types/node": "^18.16.19",
"@types/sizzle": "^2.3.3",
"@typescript-eslint/eslint-plugin": "^5.61.0",
"@typescript-eslint/parser": "^5.61.0",
"builtin-modules": "^3.3.0",
"classnames": "^2.3.2",
"esbuild": "^0.18.11",
"esbuild-sass-plugin": "^2.10.0",
"eslint-plugin-jest-dom": "^5.0.1",
"eventemitter3": "^5.0.1",
"jest": "^29.6.1",
"jest-environment-jsdom": "^29.6.1",
"jest-extended": "^4.0.0",
"obsidian": "latest",
"sizzle": "^2.3.10",
"ts-custom-error": "^3.3.1",
"ts-jest": "^29.1.1",
"tslib": "^2.6.0",
"typescript": "^5.1.6"
},
"dependencies": {
"cross-env": "^7.0.3"
}
}