generated from 3C0D/obsidian-sample-plugin-modif
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
45 lines (45 loc) · 1.34 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
{
"name": "quick-plugin-switcher",
"version": "8.1.10",
"description": "Adds a ribbon icon to quickly switch plugins with filters (all, enabled, disabled, most switched)",
"main": "main.js",
"scripts": {
"start": "npm i && cross-env REAL=0 node scripts/start.mjs",
"dev": "cross-env REAL=0 tsx scripts/esbuild.config.mts",
"build": "tsc -noEmit -skipLibCheck && tsx scripts/esbuild.config.mts production",
"real": "cross-env REAL=1 npm run build",
"acp": "tsx scripts/acp.mts",
"bacp": "tsx scripts/acp.mts -b",
"version": "tsx scripts/update-version.mts",
"release": "tsx scripts/release.mts"
},
"keywords": [],
"author": "3C0D",
"license": "MIT",
"devDependencies": {
"@popperjs/core": "^2.11.8",
"@types/markdown-it": "^13.0.2",
"@types/slug": "^5.0.7",
"@types/fs-extra": "^11.0.4",
"@types/node": "^16.11.6",
"@types/semver": "^7.5.8",
"@typescript-eslint/eslint-plugin": "5.29.0",
"@typescript-eslint/parser": "5.29.0",
"builtin-modules": "3.3.0",
"cross-env": "^7.0.3",
"dotenv": "^16.4.5",
"dedent": "^1.5.1",
"esbuild": "^0.23.1",
"obsidian": "latest",
"tslib": "2.4.0",
"typescript": "4.7.4",
"fs-extra": "^11.2.0",
"json-stringify-pretty-compact": "^4.0.0",
"semver": "^7.6.0",
"tsx": "^4.7.1",
"monkey-around": "^2.3.0",
"path": "^0.12.7",
"readline": "^1.3.0",
"slug": "^8.2.3"
}
}