forked from polyipseity/obsidian-terminal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
100 lines (100 loc) · 2.89 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
{
"author": "polyipseity",
"dependencies": {
"@capacitor/filesystem": "^4.1.4",
"acorn": "^8.8.2",
"ansi-escape-sequences": "^6.2.1",
"async-lock": "^1.4.0",
"browser-util-inspect": "^0.2.0",
"deep-equal": "^2.2.1",
"file-saver": "^2.0.5",
"i18next": "^22.4.15",
"i18next-resources-to-backend": "^1.1.3",
"immutable": "^4.3.0",
"lodash-es": "^4.17.21",
"lucide": "^0.192.0",
"lz-string": "^1.5.0",
"monkey-around": "^2.3.0",
"p-lazy": "^4.0.0",
"semver": "^7.5.0",
"simple-icons": "^8.12.1",
"tmp-promise": "^3.0.3",
"ts-essentials": "^9.3.2",
"xterm": "^5.1.0",
"xterm-addon-canvas": "^0.3.0",
"xterm-addon-fit": "^0.7.0",
"xterm-addon-ligatures": "^0.6.0",
"xterm-addon-search": "^0.11.0",
"xterm-addon-serialize": "^0.9.0",
"xterm-addon-unicode11": "^0.5.0",
"xterm-addon-web-links": "^0.8.0",
"xterm-addon-webgl": "^0.14.0"
},
"description": "Integrate consoles, shells, and terminals inside Obsidian.",
"devDependencies": {
"@tsconfig/esm": "^1.0.3",
"@tsconfig/node16": "^1.0.3",
"@tsconfig/recommended": "^1.0.2",
"@tsconfig/strictest": "^2.0.1",
"@tsconfig/svelte": "^4.0.1",
"@types/ansi-escape-sequences": "^4.0.0",
"@types/async-lock": "^1.4.0",
"@types/browser-util-inspect": "^0.2.0",
"@types/deep-equal": "^1.0.1",
"@types/estree": "^1.0.1",
"@types/file-saver": "^2.0.5",
"@types/json-stringify-safe": "^5.0.0",
"@types/lodash-es": "^4.17.7",
"@types/node": "^16.18.25",
"@typescript-eslint/eslint-plugin": "^5.59.2",
"@typescript-eslint/parser": "^5.59.2",
"builtin-modules": "^3.3.0",
"esbuild": "^0.17.18",
"esbuild-svelte": "^0.7.3",
"eslint-import-resolver-typescript": "^3.5.5",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-svelte3": "^4.0.0",
"obsidian": "file:build/obsidian",
"svelte": "^3.58.0",
"svelte-preprocess": "^5.0.3",
"tslib": "^2.5.0",
"typescript": "^5.0.4",
"typescript-svelte-plugin": "^0.3.22"
},
"displayName": "Obsidian Terminal",
"keywords": [
"console",
"obsidian",
"plugin",
"shell",
"terminal",
"terminal emulator"
],
"license": "AGPL-3.0-or-later",
"main": "main.js",
"name": "obsidian-terminal",
"obsidian": {
"authorUrl": "",
"fundingUrl": {},
"id": "terminal",
"isDesktopOnly": false,
"minAppVersion": "1.1.13",
"name": "Terminal"
},
"overrides": {
"tsconfig-paths": "^4.0.0"
},
"private": true,
"scripts": {
"build": "npm run check && npm run build:force",
"build:force": "node build/build.mjs",
"check": "tsc -noEmit && eslint --cache --ignore-pattern \"*.svelte\" .",
"dev": "npm run build:force dev",
"fix": "eslint --fix --cache --ignore-pattern \"*.svelte\" .",
"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"
},
"version": "3.8.0"
}