-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1002 Bytes
/
package.json
File metadata and controls
47 lines (47 loc) · 1002 Bytes
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
{
"name": "typescript-yaml-plugin",
"version": "1.0.11",
"description": "TypeScript Language Service plugin for YAML",
"keywords": [
"typescript",
"ts",
"typescript-5",
"ts-5",
"yaml",
"yml",
"plugin",
"language-service",
"intellisense",
"autocomplete"
],
"author": "João Cabral Pinto",
"repository": {
"type": "git",
"url": "git+https://github.com/cabralpinto/typescript-yaml-plugin.git"
},
"homepage": "https://github.com/cabralpinto/typescript-yaml-plugin#readme",
"bugs": {
"url": "https://github.com/cabralpinto/typescript-yaml-plugin/issues"
},
"license": "MIT",
"main": "./dist/index.js",
"files": [
"./dist",
"README.md"
],
"scripts": {
"build": "tsc",
"format": "prettier --write ."
},
"engines": {
"typescript": ">=5.0"
},
"dependencies": {
"typescript": "^5.9.3",
"yaml": "^2.8.1"
},
"devDependencies": {
"@types/node": "^24.2.0",
"prettier": "^3.6.2"
}
}