-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 1.96 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
66
67
68
69
70
{
"name": "tsc-ls",
"version": "0.0.6",
"packageManager": "[email protected]",
"license": "MIT",
"main": "./dist/index.js",
"bin": "./dist/bin.js",
"files": [
"dist"
],
"description": "TypeScript compiler using language service plugins",
"author": {
"name": "Richard Haddad"
},
"keywords": [
"typescript",
"compiler",
"language service"
],
"homepage": "https://github.com/chnapy/tsc-ls#readme",
"repository": {
"type": "git",
"url": "https://github.com/chnapy/tsc-ls"
},
"bugs": {
"url": "https://github.com/chnapy/tsc-ls/issues"
},
"scripts": {
"c:format:fix": "prettier -w .",
"c:lint": "eslint . --cache --cache-location node_modules/.cache/.eslintcache",
"c:lint:fix": "yarn c:lint --fix",
"c:type": "tsc --noEmit",
"c:test": "jest --passWithNoTests",
"c:test:ci": "jest --passWithNoTests --ci -i",
"c:test:watch": "jest --passWithNoTests --watch",
"benchmark": "ts-node --transpile-only benchmark/benchmark.ts",
"build": "tsc -p tsconfig.build.json"
},
"devDependencies": {
"@babel/core": "7.20.12",
"@babel/eslint-parser": "7.19.1",
"@babel/preset-env": "7.20.2",
"@babel/preset-typescript": "7.18.6",
"@types/benchmark": "2.1.2",
"@types/jest": "29.4.0",
"@types/node": "18.11.18",
"@typescript-eslint/eslint-plugin": "5.49.0",
"@typescript-eslint/parser": "5.49.0",
"babel-jest": "29.4.1",
"benchmark": "2.1.4",
"eslint": "8.33.0",
"eslint-config-prettier": "8.6.0",
"eslint-import-resolver-typescript": "3.5.3",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-unicorn": "45.0.2",
"graphql": "16.6.0",
"graphql-tag": "2.12.6",
"jest": "29.4.1",
"prettier": "2.8.3",
"ts-gql-plugin": "1.5.0",
"ts-node": "10.9.1",
"tslib": "2.5.0",
"typescript": "4.9.5",
"typescript-plugin-css-modules": "4.1.1"
},
"peerDependencies": {
"typescript": ">=4.0.0"
}
}