-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.03 KB
/
Copy pathpackage.json
File metadata and controls
47 lines (47 loc) · 1.03 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
43
44
45
46
47
{
"name": "coc-prisma",
"version": "0.13.0",
"description": "Coc extension that implements Prisma Language Server",
"author": "Harshit Pant <pantharshit00@gmail.com>",
"repository": {
"type": "git",
"url": "https://github.com/pantharshit00/coc-prisma"
},
"license": "MIT",
"main": "lib/index.js",
"keywords": [
"coc.nvim"
],
"engines": {
"coc": "^0.0.82"
},
"scripts": {
"clean": "rimraf lib",
"watch": "npm run dev -- -w",
"build": "tsc",
"prepare": "npm-run-all clean build"
},
"devDependencies": {
"@types/node": "^24.3.0",
"coc.nvim": "0.0.82",
"npm-run-all": "^4.1.5",
"rimraf": "^6.0.1",
"ts-loader": "^9.5.4",
"typescript": "^5.9.2"
},
"activationEvents": [
"onLanguage:prisma"
],
"dependencies": {
"@prisma/language-server": "^6.15.0"
},
"contributes": {
"commands": [
{
"command": "coc-prisma.restartLanguageServer",
"title": "Restart Prisma Language Server",
"category": "Prisma"
}
]
}
}