-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.39 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
{
"name": "tsetse",
"description": "Tsetse language server plugin",
"homepage": "https://github.com/innopals/tsetse",
"repository": {
"type": "git",
"url": "[email protected]:innopals/tsetse.git"
},
"keywords": [
"LSP",
"tsetse",
"typescript"
],
"license": "Apache-2.0",
"version": "0.0.4",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"tsetse": "bin/tsetse"
},
"files": [
"LICENSE",
"README.md",
"dist/",
"bin/"
],
"scripts": {
"prepublishOnly": "npm run dist",
"dist": "rimraf dist && tsc"
},
"lint-staged": {
"*.{js,json,md,ts,tsx,graphql}": [
"prettier --write"
]
},
"prettier": {
"singleQuote": true,
"semi": true,
"tabWidth": 2,
"arrowParens": "avoid",
"trailingComma": "all",
"printWidth": 80
},
"peerDependencies": {
"typescript": "*"
},
"devDependencies": {
"@types/node": "^17.0.38",
"@typescript-eslint/eslint-plugin": "^5.27.0",
"@typescript-eslint/parser": "^5.27.0",
"eslint": "^8.16.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^8.0.1",
"lint-staged": "^13.0.0",
"prettier": "^2.6.2",
"prettier-plugin-organize-imports": "^2.3.4",
"rimraf": "^3.0.2",
"typescript": "^4.7.2"
},
"dependencies": {
"tsutils": "^3.21.0"
}
}