generated from 3C0D/obsidian-sample-plugin-modif
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.22 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
{
"name": "duplicate-line",
"version": "3.1.4",
"description": "Duplicate Line(s) Up Down, duplicate selection Up Down, right, left. Support Multicursor",
"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": {
"@types/fs-extra": "^11.0.4",
"@types/lodash": "^4.14.194",
"@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",
"dedent": "^1.5.1",
"dotenv": "^16.4.5",
"esbuild": "^0.23.1",
"fs-extra": "^11.2.0",
"json-stringify-pretty-compact": "^4.0.0",
"lodash": "^4.17.21",
"obsidian": "latest",
"obsidian-typings": "^2.2.0",
"semver": "^7.6.0",
"tslib": "2.4.0",
"tsx": "^4.7.1",
"typescript": "4.7.4"
}
}