-
Notifications
You must be signed in to change notification settings - Fork 37
/
package.json
112 lines (112 loc) · 3.63 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
{
"name": "coc-fzf-preview",
"version": "2.16.6",
"description": "The plugin that powerfully integrates fzf and (Neo)vim. It is also possible to integrate with coc.nvim.",
"author": "yuki-yano",
"license": "MIT",
"repository": {
"url": "[email protected]:yuki-yano/fzf-preview.vim"
},
"main": "./lib/coc.js",
"files": [
"lib/coc.js",
"autoload",
"plugin",
"bin"
],
"keywords": [
"coc.nvim",
"fzf"
],
"engines": {
"coc": "^0.0.80",
"node": ">=12.0.0"
},
"activationEvents": [
"*"
],
"scripts": {
"build": "npm-run-all --parallel build:*",
"build:remote": "yarn run webpack --config webpack.remote.ts",
"build:coc": "yarn run webpack --config webpack.coc.ts",
"build:rpc": "yarn run webpack --config webpack.rpc.ts",
"build:preview-script": "yarn run webpack --config webpack.preview.ts",
"dev": "npm-run-all --parallel dev:*",
"dev:remote": "yarn run webpack --watch --config webpack.remote.ts",
"dev:coc": "yarn run webpack --watch --config webpack.coc.ts",
"dev:rpc": "yarn run webpack --watch --config webpack.rpc.ts",
"release-build:remote": "yarn run clean && yarn run build:remote --mode=production",
"release-build:coc": "yarn run clean && yarn run build:coc --mode=production",
"release-build:rpc": "yarn run clean && yarn run build:rpc --mode=production",
"typecheck": "tsc --noEmit",
"typecheck:watch": "tsc --noEmit --watch",
"lint": "eslint --ext .ts src",
"lint:fix": "eslint --ext .ts --fix src",
"lint:watch": "esw --watch --color --clear --ext .ts src",
"prettier": "prettier --check src/**/*.ts",
"prettier:fix": "prettier --write src/**/*.ts",
"test": "jest",
"test:watch": "jest --watch",
"cli": "ts-node --files -r tsconfig-paths/register",
"clean": "rimraf lib rplugin/node/fzf-preview.vim/index.js",
"print-version": "cat package.json | yarn run --silent json version"
},
"dependencies": {
"@reduxjs/toolkit": "^1.8.5",
"camelcase": "^6.3.0",
"chalk": "^5.0.1",
"coc.nvim": "^0.0.82",
"expand-tilde": "^2.0.2",
"immer": "^9.0.15",
"lodash": "^4.17.20",
"neovim": "^4.10.1",
"printf": "^0.6.0",
"redux": "^4.2.0",
"strip-ansi": "^7.0.1",
"type-fest": "^2.19.0",
"uuid": "^9.0.0",
"vscode-jsonrpc": "^8.0.2",
"vscode-languageserver-types": "^3.17.2",
"yargs": "^17.5.1"
},
"devDependencies": {
"@jest/types": "^29.0.3",
"@types/eslint": "^8.4.6",
"@types/expand-tilde": "^2.0.0",
"@types/jest": "^29.0.1",
"@types/lodash": "^4.14.185",
"@types/node": "^18.7.16",
"@types/prettier": "^2.7.0",
"@types/rimraf": "^3.0.2",
"@types/uuid": "^8.3.4",
"@types/webpack": "^5.28.0",
"@types/webpack-merge": "^5.0.0",
"@types/yargs": "^17.0.12",
"@typescript-eslint/eslint-plugin": "^5.36.2",
"@typescript-eslint/parser": "^5.36.2",
"can-npm-publish": "^1.3.6",
"eslint": "^8.23.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-typescript": "^3.5.1",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^27.0.4",
"eslint-plugin-n": "^15.2.5",
"eslint-plugin-simple-import-sort": "^8.0.0",
"eslint-watch": "^8.0.0",
"jest": "^29.0.3",
"json": "^11.0.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.7.1",
"rimraf": "^3.0.2",
"ts-jest": "^29.0.0",
"ts-loader": "^9.3.1",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.1.0",
"typescript": "^4.8.3",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0",
"webpack-merge": "^5.8.0"
}
}