-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 892 Bytes
/
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
{
"name": "scarpet-ls",
"type": "module",
"version": "1.0.0",
"description": "",
"main": "./lib/main.js",
"bin": {
"scarpet-ls": "./bin/scarpet-ls"
},
"scripts": {
"start": "node build/main.js",
"test": "mocha",
"format": "prettier --write \"{lib,test}/*.js\"",
"lint": "tsc && eslint --fix \"lib/*.js\""
},
"keywords": [],
"author": "Federico Carboni",
"license": "MIT",
"devDependencies": {
"@types/mocha": "^10.0.6",
"@types/node": "^20.11.5",
"esbuild": "^0.20.0",
"eslint": "^8.56.0",
"eslint-plugin-import": "^2.29.1",
"mocha": "^10.2.0",
"prettier": "^3.2.4",
"prettier-plugin-jsdoc": "^1.3.0",
"typescript": "^5.3.3"
},
"dependencies": {
"scarpet-parser": "github:FedericoCarboni/scarpet-parser",
"vscode-languageserver": "^9.0.1",
"vscode-languageserver-textdocument": "^1.0.11"
}
}