-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.12 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
{
"name": "tsserver-lite",
"version": "1.0.0",
"description": "tsserver wrapper",
"main": "esm/index.mjs",
"type": "module",
"files": [
"esm"
],
"scripts": {
"build": "rm -rf esm && npm run build:esm",
"build:esm": "tsc -b ./tsconfig.json",
"build:w": "tsc -b ./tsconfig.json -w",
"example": "node ./example/index.mjs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/shiyangzhaoa/tsserver.git"
},
"keywords": [
"typescript"
],
"author": "SSSS",
"bugs": {
"url": "https://github.com/shiyangzhaoa/tsserver/issues"
},
"homepage": "https://github.com/shiyangzhaoa/tsserver#readme",
"devDependencies": {
"@types/jest": "^29.2.5",
"@types/node": "^18.11.18",
"@typescript-eslint/eslint-plugin": "^5.48.0",
"@typescript-eslint/parser": "^5.48.0",
"eslint": "^8.31.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.3.1",
"jest-watch-typeahead": "^2.2.1",
"node-notifier": "^10.0.1",
"ts-jest": "^29.0.3",
"tslib": "^2.4.1"
},
"dependencies": {
"typescript": "4.9.4"
}
}