-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.34 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.34 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "ls_emmet",
"version": "1.0.9",
"description": "Just emmet completion with LSP",
"main": "dist/server.js",
"scripts": {
"build": "tsc --outDir dist",
"dev": "npm run build && npm link"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pedro757/emmet.git"
},
"author": "@pedro757",
"license": "MIT",
"bugs": {
"url": "https://github.com/pedro757/emmet/issues"
},
"homepage": "https://github.com/pedro757/emmet#readme",
"dependencies": {
"@types/node": "^17.0.33",
"emmet": "^2.3.4",
"typescript": "^4.4.2",
"vscode-languageserver": "^8.0.1",
"vscode-languageserver-textdocument": "^1.0.1"
},
"bin": {
"ls_emmet": "dist/server.js"
},
"eslintConfig": {
"root": true,
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/recommended"
],
"parser": "@typescript-eslint/parser",
"parserOptions": {
"project": [
"./tsconfig.json"
]
},
"plugins": [
"@typescript-eslint"
],
"rules": {
"indent": [
"error",
2
],
"max-len": [
"error",
{
"code": 80
}
],
"no-trailing-spaces": "error"
}
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.10.1",
"@typescript-eslint/parser": "^5.10.1"
}
}