generated from obsidianmd/obsidian-sample-plugin
-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
126 lines (126 loc) · 3.3 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
{
"author": "polyipseity",
"bugs": {
"url": "https://github.com/polyipseity/PLACEHOLDER"
},
"dependencies": {
"@polyipseity/obsidian-plugin-library": "^1.25.1",
"@xterm/addon-canvas": "^0.7.0",
"@xterm/addon-fit": "^0.10.0",
"@xterm/addon-ligatures": "^0.9.0",
"@xterm/addon-search": "^0.15.0",
"@xterm/addon-serialize": "^0.13.0",
"@xterm/addon-unicode11": "^0.8.0",
"@xterm/addon-web-links": "^0.11.0",
"@xterm/addon-webgl": "^0.18.0",
"@xterm/xterm": "^5.5.0",
"acorn": "^8.11.3",
"ansi-escape-sequences": "^6.2.2",
"async-lock": "^1.4.1",
"browser-util-inspect": "^0.2.0",
"i18next": "^23.11.5",
"immutable": "^4.3.6",
"lodash-es": "^4.17.21",
"monkey-around": "^3.0.0",
"obsidian": "~1.2.8",
"semver": "^7.6.2",
"simple-icons": "^12.1.0",
"source-map": "^0.7.4",
"tmp-promise": "^3.0.3",
"ts-essentials": "^10.0.0"
},
"description": "Integrate consoles, shells, and terminals inside Obsidian.",
"devDependencies": {
"@changesets/cli": "^2.27.5",
"@polyipseity/obsidian": "~1.2.8",
"@tsconfig/node16": "^16.1.3",
"@tsconfig/recommended": "^1.0.6",
"@tsconfig/strictest": "^2.0.5",
"@types/ansi-escape-sequences": "^4.0.4",
"@types/async-lock": "^1.4.2",
"@types/browser-util-inspect": "^0.2.4",
"@types/lodash-es": "^4.17.12",
"@types/node": "^20.14.2",
"@types/semver": "^7.5.8",
"@typescript-eslint/eslint-plugin": "^7.12.0",
"@typescript-eslint/parser": "^7.12.0",
"builtin-modules": "^4.0.0",
"esbuild": "^0.21.4",
"esbuild-compress": "^2.0.0",
"esbuild-plugin-globals": "^0.2.0",
"esbuild-plugin-text-replace": "^1.3.0",
"eslint": "^8.57.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-markdownlint": "^0.6.0",
"p-lazy": "^4.0.0",
"tslib": "^2.6.3",
"typescript": "^5.4.5"
},
"files": [
"main.js",
"manifest.json",
"requirements.txt",
"styles.css"
],
"funding": [
{
"type": "Buy Me a Coffee",
"url": "https://buymeacoffee.com/polyipseity"
},
{
"type": "GitHub Sponsors",
"url": "https://github.com/sponsors/polyipseity"
}
],
"homepage": "https://github.com/polyipseity/PLACEHOLDER#readme",
"keywords": [
"console",
"console-emulator",
"obsidian",
"obsidian-plugin",
"plugin",
"shell",
"shell-emulator",
"terminal",
"terminal-emulator"
],
"license": "AGPL-3.0-or-later",
"main": "main.js",
"name": "obsidian-terminal",
"obsidian": {
"authorUrl": "https://github.com/polyipseity",
"id": "terminal",
"isDesktopOnly": false,
"minAppVersion": "1.2.8",
"name": "Terminal"
},
"overrides": {},
"pnpm": {
"overrides": {}
},
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/polyipseity/PLACEHOLDER.git"
},
"scripts": {
"build": "npm run check && npm run build:force",
"build:force": "node build/build.mjs",
"check": "tsc --noEmit && eslint --cache .",
"dev": "npm run build:force -- dev",
"fix": "eslint --fix --cache .",
"obsidian:install": "npm run build && node build/obsidian-install.mjs",
"obsidian:install:force": "npm run build:force && node build/obsidian-install.mjs",
"postversion": "node build/version-post.mjs",
"version": "node build/version.mjs"
},
"sideEffects": false,
"style": "styles.css",
"type": "module",
"version": "3.15.1",
"workspaces": [
".",
"build/*"
]
}