forked from sedwards2009/extraterm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
90 lines (90 loc) · 2.88 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
{
"name": "main",
"description": "A terminal",
"author": "Simon Edwards",
"license": "MIT",
"version": "1.0.0",
"type": "module",
"scripts": {
"build": "yarn run build-code && yarn run build-bundle && yarn run lint",
"build-code": "tsc",
"build-icons": "node resources/extra_icons/build.js",
"build-bundle": "esbuild build/main.js --sourcemap --bundle --outfile=dist/main.cjs --platform=node --format=cjs --external:@nodegui/nodegui \"--external:nodegui-plugin-*\"",
"clean": "shx rm -rf build dist",
"lint": "eslint \"src/**/*.ts\"",
"lint-strict": "eslint --max-warnings 1 \"src/**/*.ts\"",
"test": "yarn run build-code && yarn node --experimental-vm-modules $(yarn bin jest)"
},
"dependencies": {
"@nodegui/nodegui": "0.66.0",
"nodegui-plugin-font-icon": "0.3.1",
"nodegui-plugin-qads": "^0.15.0",
"nodegui-plugin-qhotkey": "^0.1.1",
"nodegui-plugin-rich-text-delegate": "0.3.0",
"nodegui-plugin-style-tweaker": "0.3.1"
},
"devDependencies": {
"@extraterm/extraterm-extension-api": "0.15.0",
"@types/dompurify": "^2.0.1",
"@types/he": "^1.1.1",
"@types/lodash-es": "4.17.10",
"@types/lru-cache": "^4.1.0",
"@types/marked": "^0.7.3",
"@types/mime": "^2.0.0",
"@types/node": "^18.15.3",
"@types/opentype.js": "^1.3.3",
"@types/qs": "6.2.30",
"@types/source-map-support": "0.2.28",
"@types/utf8": "2.1.5",
"commander": "^7.2.0",
"dompurify": "^2.0.17",
"env-paths": "^2.2.1",
"esbuild": "^0.15.5",
"eslint": "8.53.0",
"eslint-config-extraterm": "1.0.0",
"eslint-plugin-unicorn": "42.0.0",
"extraterm-boolean-expression-evaluator": "1.0.0",
"extraterm-char-cell-line": "1.0.0",
"extraterm-color-utilities": "1.0.0",
"extraterm-data-structures": "1.0.0",
"extraterm-font-ligatures": "1.0.0",
"extraterm-logging": "1.0.0",
"extraterm-mimetype-detector": "1.0.0",
"extraterm-readonly-toolbox": "0.1.0",
"extraterm-timeoutqt": "1.0.0",
"extraterm-trim-between-tags": "1.0.0",
"extraterm-unicode-utilities": "1.0.0",
"extraterm-uuid": "1.0.0",
"file-type": "^7.6.0",
"finalhandler": "0.4.0",
"fontinfo": "0.3.0",
"fuzzyjs": "^4.0.4",
"get-stream": "^6.0.0",
"he": "^1.2.0",
"jest": "27.5.1",
"json-to-ast": "2.1.0",
"khroma": "^1.4.1",
"lodash-es": "4.17.21",
"lru-cache": "^4.1.3",
"mime-types": "^2.1.21",
"open": "^8.2.1",
"opentype.js": "^1.3.1",
"performance-now": "2.1.0",
"qs": "6.3.3",
"qt-construct": "0.1.0",
"shelljs": "0.8.5",
"shx": "^0.3.2",
"smart-buffer": "4.0.2",
"source-map-support": "^0.5.21",
"term-api": "1.0.0",
"term-api-lineimpl": "1.0.0",
"text-term-api": "1.0.0",
"text-term-api-lineimpl": "1.0.0",
"typescript": "5.2.2",
"utf8": "2.1.2",
"webfont": "^11.2.26"
},
"jshintConfig": {
"esversion": 6
}
}