-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
75 lines (75 loc) · 2.51 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
{
"name": "uivonim",
"author": "smolck",
"license": "AGPL-3.0-only",
"version": "0.29.0",
"description": "Extensible Neovim GUI forked from Veonim",
"main": "build/main/main.js",
"scripts": {
"dev": "npm run build && electron build/main/main.js",
"prod": "npm run build:prod && NODE_ENV=production electron build/main/main.js",
"prod:start": "NODE_ENV=production electron build/main/main.js",
"build": "node tools/build.js",
"build:prod": "node tools/build-prod.js",
"check-types": "tsc -p src/tsconfig.json --noEmit",
"package": "npm run build:prod && electron-builder",
"test": "mocha \"test/unit/**/*.js\"",
"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:font-sizes": "electron tools/font-sizer/index.js",
"unused-exports": "ts-unused-exports src/tsconfig.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/smolck/uivonim.git"
},
"bugs": {
"url": "https://github.com/smolck/uivonim/issues"
},
"homepage": "https://github.com/smolck/uivonim",
"dependencies": {
"feather-icons": "^4.28.0",
"fuzzaldrin-plus": "^0.6.0",
"highlight.js": "^11.7.0",
"inferno": "^7.4.11",
"marked": "^9.1.4",
"marked-highlight": "^2.0.6",
"neovim": "^4.10.0",
"ts-node": "^10.4.0",
"twgl.js": "^4.21.2"
},
"devDependencies": {
"@babel/cli": "^7.16.0",
"@babel/core": "^7.23.2",
"@babel/plugin-proposal-class-properties": "^7.16.0",
"@babel/plugin-proposal-object-rest-spread": "^7.16.0",
"@babel/plugin-transform-modules-commonjs": "^7.16.0",
"@babel/preset-typescript": "^7.23.2",
"@medv/finder": "^2.1.0",
"@types/fuzzaldrin-plus": "^0.6.2",
"@types/marked": "^3.0.2",
"@types/node": "^16.11.12",
"@types/webgl2": "0.0.6",
"babel-loader": "^8.2.3",
"babel-plugin-inferno": "^6.3.0",
"babel-plugin-syntax-jsx": "^6.18.0",
"electron": "^27.0.2",
"electron-builder": "^24.6.4",
"electron-devtools-installer": "^3.2.0",
"fs-extra": "^10.0.0",
"mocha": "^9.2.2",
"path-browserify": "^1.0.1",
"prettier": "2.5.1",
"proxyquire": "^2.1.3",
"spectron": "^15.0.0",
"ts-loader": "^9.2.6",
"ts-unused-exports": "^7.0.3",
"ttypescript": "^1.5.13",
"typescript": "^4.5.3",
"webpack": "^5.89.0",
"webpack-cli": "^4.9.1"
}
}