-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 963 Bytes
/
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
{
"$schema": "https://json.schemastore.org/package.json",
"name": "@strozw/github-actions-languageserver",
"homepage": "https://github.com/strozw/github-actions-languageserver",
"type": "module",
"version": "0.1.11",
"description": "CLI for `@actions/languageserver`",
"publishConfig": {
"access": "public"
},
"bin": {
"github-actions-languageserver": "./dist/cli.cjs"
},
"engines": {
"node": ">=16.0.0"
},
"scripts": {
"build": "webpack --mode production"
},
"keywords": [
"github",
"actions",
"github-actions",
"languageserver"
],
"author": "strozw",
"license": "MIT",
"devDependencies": {
"@tsconfig/node-lts": "^20.1.3",
"typescript": "^5.6.3",
"webpack": "^5.95.0",
"webpack-cli": "^5.1.4",
"webpack-shebang-plugin": "^1.1.8"
},
"dependencies": {
"@actions/languageserver": "^0.3.13"
},
"overrides": {
"minimatch": "9.0.4",
"mkdirp": "0.5.5"
}
}