-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.04 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.04 KB
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
{
"name": "coc-discord",
"version": "0.1.0",
"description": "discord rich presence for coc.nvim",
"main": "lib/index.js",
"scripts": {
"clean": "rm -rf lib/",
"build": "tsc -p tsconfig.json",
"watch": "tsc -w -p tsconfig.json",
"lint": "eslint src --ext .ts",
"prepack": "yarn clean && yarn lint && yarn build"
},
"keywords": [
"coc.nvim",
"vim",
"discord"
],
"homepage": "https://github.com/amiralies/coc-discord#readme",
"repository": "github:amiralies/coc-discord",
"license": "MIT",
"engines": {
"coc": ">=0.0.70"
},
"devDependencies": {
"@types/discord-rpc": "^3.0.2",
"@types/node": "^13.9.1",
"@typescript-eslint/eslint-plugin": "^2.26.0",
"@typescript-eslint/parser": "^2.26.0",
"coc.nvim": "^0.0.76",
"eslint": "^6.8.0",
"eslint-config-airbnb-typescript": "^7.2.0",
"eslint-plugin-import": "^2.20.1",
"typescript": "^3.8.3"
},
"dependencies": {
"discord-rpc": "^3.1.0",
"fp-ts": "^2.5.3"
},
"author": {
"name": "Amirali Esmaeili"
}
}