-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
50 lines (50 loc) · 1.41 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
{
"commit-and-tag-version": {
"t": ""
},
"dependencies": {
"ansi-colors": "^4.1.3",
"builtin-modules": "^3.3.0",
"commit-and-tag-version": "^11.2.2",
"dotenv": "^16.3.1",
"dotenv-cli": "^7.2.1",
"esbuild": "^0.18.18",
"i18next": "^23.4.1",
"tslib": "^2.6.1"
},
"description": "Copy a selection in reading view while keeping the markdown formatting",
"devDependencies": {
"@biomejs/biome": "1.7.3",
"@codemirror/view": "^6.21.4",
"@enveloppe/obsidian-dataview": "^0.5.66",
"@types/electron": "npm:@ophidian/electron-types@^24.3.1",
"@types/node": "^20.4.8",
"@types/obsidian-typings": "npm:obsidian-typings@^1.1.6",
"commander": "^11.0.0",
"cross-env": "^7.0.3",
"dedent": "^1.5.1",
"env-cmd": "^10.1.0",
"monkey-around": "^2.3.0",
"obsidian": "^1.4.0",
"ts-deepmerge": "^6.2.0",
"typescript": "^5.1.6"
},
"license": "GPL-3.0-only",
"main": "lib/main.js",
"name": "advanced-copy",
"scripts": {
"lint": "biome lint src/ --apply",
"prebuild": "tsc --noEmit --skipLibCheck",
"build": "node esbuild.config.mjs --production",
"dev:prod": "node esbuild.config.mjs --vault",
"dev": "node esbuild.config.mjs",
"export": "node esbuild.config.mjs --production --vault",
"bump": "node commit-and-tag-version.mjs",
"postbump": "git push --follow-tags origin master",
"predeploy": "bun run bump",
"deploy": "pnpm run export"
},
"private": true,
"version": "0.2.13",
"pnpm": true
}