forked from mrkishi/veonim
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
88 lines (88 loc) · 2.7 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
{
"name": "veonim",
"author": "veonim",
"license": "AGPL-3.0-only",
"version": "0.23.6",
"description": "neovim GUI with 100x more memory usage",
"main": "build/bootstrap/main.js",
"scripts": {
"postinstall": "node tools/postinstall.js",
"start": "node tools/start.js",
"start:release": "electron build/bootstrap/main.js",
"build": "node tools/build.js",
"package": "node tools/package.js",
"test": "mocha test/unit",
"test:e2e": "mocha test/e2e -t 0",
"test:e2e:snapshot": "npm run test:e2e -- --snapshot",
"test:integration": "mocha test/integration -t 10000",
"test:watch": "npm run test -- -w",
"test:integration:watch": "npm run test:integration -- -w",
"gen:api": "node tools/gen-api.js",
"gen:font-sizes": "electron tools/font-sizer/index.js",
"unused-exports": "ts-unused-exports tsconfig.json $(find src -name *.ts)",
"setup-mirrors": "node tools/setup-mirrors.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/veonim/veonim.git"
},
"vscode-api-version": "1.31.1",
"repository-mirrors": [
"[email protected]:veonim/veonim.git",
"https://[email protected]/veonim/veonim.git",
"https://[email protected]/veonim/veonim.git"
],
"bugs": {
"url": "https://github.com/veonim/veonim/issues"
},
"homepage": "https://github.com/veonim/veonim#readme",
"bundled-extension-dependencies": {
"typescript": "3.3.1"
},
"dependencies": {
"diff-match-patch": "1.0.4",
"fuzzaldrin-plus": "0.4.1",
"hyperapp": "1.2.9",
"hyperapp-feather": "0.4.0",
"hyperapp-seti": "0.2.0",
"marked": "^0.7.0"
},
"devDependencies": {
"@deomitrus/hyperapp-redux-devtools": "1.2.0",
"@medv/finder": "1.1.0",
"@types/diff-match-patch": "1.0.32",
"@types/fuzzaldrin-plus": "0.0.1",
"@types/node": "11.12.0",
"@types/webgl2": "0.0.4",
"all-other-unzip-libs-suck": "0.0.3",
"electron": "^7.0.0",
"electron-builder": "^21.2.0",
"electron-devtools-installer": "^2.2.4",
"fs-extra": "5.0.0",
"mocha": "5.2.0",
"proxyquire": "2.0.1",
"spectron": "5.0.0",
"ts-unused-exports": "2.0.5",
"ttypescript": "^1.5.7",
"typescript": "^3.6.4",
"vscode-debugprotocol": "1.29.0"
},
"binaryDependencies": [
{
"org": "mholt",
"repo": "archiver",
"tag": "v3.1.1",
"mac": "arc_mac_amd64",
"win": "arc_windows_amd64.exe",
"linux": "arc_linux_amd64"
},
{
"org": "burntsushi",
"repo": "ripgrep",
"tag": "0.10.0",
"mac": "ripgrep-${tag}-x86_64-apple-darwin.tar.gz",
"win": "ripgrep-${tag}-x86_64-pc-windows-msvc.zip",
"linux": "ripgrep-${tag}-x86_64-unknown-linux-musl.tar.gz"
}
]
}