forked from InoUno/yaml-ls-check
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.85 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.85 KB
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
{
"name": "yaml-ls-check",
"version": "1.5.1",
"description": "Library and tool used to validate YAML files against one or more schemas utilizing the yaml-language-server project.",
"license": "MIT",
"author": "InoUno <inoiown@gmail.com>",
"homepage": "https://github.com/InoUno/yaml-ls-check#readme",
"bugs": {
"url": "https://github.com/InoUno/yaml-ls-check/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/InoUno/yaml-ls-check.git"
},
"keywords": [
"yaml",
"validate",
"schema",
"yaml-language-server",
"vscode"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"yaml-ls-check": "dist/cli.js",
"ylsc": "dist/cli.js"
},
"files": [
"dist"
],
"scripts": {
"start": "ts-node src/cli.ts",
"clean": "rimraf dist",
"build:lib": "tsc",
"build:action": "cd github-action && rimraf dist && webpack",
"build": "npm-run-all clean build:lib build:action",
"format": "prettier --write '**/*.ts'",
"lint": "prettier --check '**/*.ts'",
"test": "jest"
},
"devDependencies": {
"@actions/core": "^1.11.1",
"@types/glob": "^8.1.0",
"@types/jest": "^29.5.14",
"@types/marked-terminal": "^6.1.1",
"@types/node": "^22.15.3",
"jest": "^29.7.0",
"marked": "^15.0.11",
"marked-terminal": "^7.3.0",
"npm-run-all": "^4.1.5",
"prettier": "^3.5.3",
"rimraf": "^6.0.1",
"ts-jest": "^29.3.2",
"ts-loader": "^9.5.2",
"ts-node": "^10.9.2",
"typescript": "^5.8.3",
"vscode-json-languageservice": "^5.5.0",
"vscode-languageserver-textdocument": "^1.0.12",
"vscode-languageserver-types": "^3.17.5",
"webpack": "^5.99.7",
"webpack-cli": "^6.0.1"
},
"dependencies": {
"commander": "^13.1.0",
"glob": "^11.0.2",
"vscode-uri": "^3.1.0",
"yaml-language-server": "1.18.0"
}
}