@eclipse-glsp/config 0.10.0 → 1.1.0-RC06
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +7 -5
- package/package.json +29 -18
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# Eclipse GLSP - Shared configuration
|
|
1
|
+
# Eclipse GLSP - Shared configuration
|
|
2
2
|
|
|
3
3
|
Common shared configuration for Eclipse GLSP components that are implemented with Typescript.
|
|
4
4
|
Provides a meta package that export common configuration objects for:
|
|
@@ -7,13 +7,15 @@ Provides a meta package that export common configuration objects for:
|
|
|
7
7
|
- [ESLint](https://eslint.org/) (`.eslintrc`)
|
|
8
8
|
- [Prettier](https://prettier.io/) (`.prettierrc`).
|
|
9
9
|
|
|
10
|
-
The package is available via npm and
|
|
10
|
+
The package is available via npm and is used by all GLSP components implemented with Typescript.
|
|
11
|
+
ESLint and prettier are included as direct dependencies.
|
|
12
|
+
In addition, common GLSP dev dependencies like lerna,typescript,rimraf etc. are included.
|
|
11
13
|
|
|
12
14
|
## Components
|
|
13
15
|
|
|
14
|
-
- `@eclipse-glsp/ts-config
|
|
15
|
-
- `@eclipse-glsp/eslint-config
|
|
16
|
-
- `@eclipse-glsp/prettier-config
|
|
16
|
+
- [`@eclipse-glsp/ts-config`](https://www.npmjs.com/package/@eclipse-glsp/ts-config): Shared Typescript configuration for GLSP projects
|
|
17
|
+
- [`@eclipse-glsp/eslint-config`](https://www.npmjs.com/package/@eclipse-glsp/eslint-config): Shared ESLint configuration for GLSP projects
|
|
18
|
+
- [`@eclipse-glsp/prettier-config`](https://www.npmjs.com/package/@eclipse-glsp/prettier-config): Shared Prettier configuration for GLSP projects
|
|
17
19
|
|
|
18
20
|
## Install
|
|
19
21
|
|
package/package.json
CHANGED
|
@@ -1,21 +1,21 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@eclipse-glsp/config",
|
|
3
|
-
"version": "
|
|
4
|
-
"description": "
|
|
5
|
-
"license": "(EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0)",
|
|
3
|
+
"version": "1.1.0-RC06",
|
|
4
|
+
"description": "Meta package that provides Typescript, eslint and prettier configurations and common dev dependencies for GLSP projects",
|
|
6
5
|
"keywords": [
|
|
7
6
|
"eclipse",
|
|
8
|
-
"
|
|
7
|
+
"config"
|
|
9
8
|
],
|
|
10
|
-
"author": {
|
|
11
|
-
"name": "Eclipse GLSP"
|
|
12
|
-
},
|
|
13
9
|
"homepage": "https://www.eclipse.org/glsp/",
|
|
10
|
+
"bugs": "https://github.com/eclipse-glsp/glsp/issues",
|
|
14
11
|
"repository": {
|
|
15
12
|
"type": "git",
|
|
16
13
|
"url": "https://github.com/eclipse-glsp/glsp.git"
|
|
17
14
|
},
|
|
18
|
-
"
|
|
15
|
+
"license": "(EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0)",
|
|
16
|
+
"author": {
|
|
17
|
+
"name": "Eclipse GLSP"
|
|
18
|
+
},
|
|
19
19
|
"contributors": [
|
|
20
20
|
{
|
|
21
21
|
"name": "Eclipse GLSP Project",
|
|
@@ -23,17 +23,28 @@
|
|
|
23
23
|
"url": "https://projects.eclipse.org/projects/ecd.glsp"
|
|
24
24
|
}
|
|
25
25
|
],
|
|
26
|
-
"publishConfig": {
|
|
27
|
-
"access": "public"
|
|
28
|
-
},
|
|
29
26
|
"dependencies": {
|
|
30
|
-
"@eclipse-glsp/eslint-config": "
|
|
31
|
-
"@eclipse-glsp/prettier-config": "
|
|
32
|
-
"@eclipse-glsp/ts-config": "
|
|
33
|
-
"
|
|
27
|
+
"@eclipse-glsp/eslint-config": "^1.1.0-RC06",
|
|
28
|
+
"@eclipse-glsp/prettier-config": "^1.1.0-RC06",
|
|
29
|
+
"@eclipse-glsp/ts-config": "^1.1.0-RC06",
|
|
30
|
+
"@typescript-eslint/eslint-plugin": "^5.45.0",
|
|
31
|
+
"@typescript-eslint/parser": "^5.45.0",
|
|
32
|
+
"eslint": "^8.29.0",
|
|
33
|
+
"eslint-config-prettier": "^8.5.0",
|
|
34
|
+
"eslint-plugin-chai-friendly": "^0.7.2",
|
|
35
|
+
"eslint-plugin-deprecation": "^1.3.3",
|
|
36
|
+
"eslint-plugin-header": "^3.1.1",
|
|
37
|
+
"eslint-plugin-import": "^2.26.0",
|
|
38
|
+
"eslint-plugin-no-null": "^1.0.2",
|
|
39
|
+
"lerna": "^6.1.0",
|
|
40
|
+
"nx": ">=15.4.2 < 15.8.0",
|
|
41
|
+
"prettier": "^2.8.0",
|
|
42
|
+
"reflect-metadata": "^0.1.13",
|
|
43
|
+
"rimraf": "^3.0.2",
|
|
44
|
+
"typescript": "^4.9.3"
|
|
34
45
|
},
|
|
35
|
-
"
|
|
36
|
-
"
|
|
46
|
+
"publishConfig": {
|
|
47
|
+
"access": "public"
|
|
37
48
|
},
|
|
38
|
-
"gitHead": "
|
|
49
|
+
"gitHead": "7a955a424094da88dd9ed43d14c78926de9a6722"
|
|
39
50
|
}
|