-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
142 lines (142 loc) · 3.9 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
{
"name": "@yaegassy/coc-astro",
"version": "0.9.2",
"description": "Astro extension for coc.nvim",
"author": "yaegassy <[email protected]>",
"license": "MIT",
"main": "lib/index.js",
"keywords": [
"coc.nvim",
"astro",
"typescript",
"javascript",
"vue",
"svelte",
"Static site generator",
"vim",
"neovim"
],
"engines": {
"coc": "^0.0.80"
},
"repository": {
"type": "git",
"url": "https://github.com/yaegassy/coc-astro"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"snippets": "curl -o snippets/astro.code-snippets https://raw.githubusercontent.com/withastro/language-tools/main/packages/vscode/languages/astro.code-snippets",
"lint": "eslint src --ext ts",
"clean": "rimraf lib",
"watch": "node esbuild.js --watch",
"build": "node esbuild.js",
"prepare": "node esbuild.js"
},
"prettier": {
"singleQuote": true,
"printWidth": 120,
"semi": true
},
"devDependencies": {
"@types/node": "^20.11.17",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"coc.nvim": "0.0.83-next.17",
"esbuild": "^0.16.17",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"rimraf": "^5.0.1"
},
"activationEvents": [
"onLanguage:astro"
],
"contributes": {
"rootPatterns": [
{
"filetype": "astro",
"patterns": [
"astro.config.js",
"astro.config.mjs",
"astro.config.cjs",
"astro.config.ts"
]
}
],
"snippets": [
{
"language": "astro",
"path": "./snippets/astro.code-snippets"
}
],
"configuration": {
"type": "object",
"title": "coc-astro configuration",
"properties": {
"astro.enable": {
"type": "boolean",
"default": true,
"description": "Enable coc-astro extension."
},
"astro.disableResolveCompletionItem": {
"type": "boolean",
"default": false,
"description": "Disable completionItem/resolve feature."
},
"astro.useWorkspaceTsdk": {
"type": "boolean",
"default": false,
"description": "Use workspace (project) detected tsLibs in astro. if false, use coc-astro's built-in tsLibs."
},
"astro.language-server.ls-path": {
"type": "string",
"title": "Language Server: Path",
"description": "Path to the language server executable. You won't need this in most cases, set this only when needing a specific version of the language server"
},
"astro.language-server.runtime": {
"scope": "application",
"type": "string",
"title": "Language Server: Runtime",
"description": "Path to the node executable used to execute the language server. You won't need this in most cases"
},
"astro.trace.server": {
"scope": "window",
"type": "string",
"enum": [
"off",
"messages",
"verbose"
],
"default": "off",
"description": "Traces the communication between VS Code and the language server."
}
}
},
"commands": [
{
"command": "astro.findFileReferences",
"title": "Astro: Find File References"
},
{
"command": "astro.reloadProject",
"title": "Astro: Reload Project"
}
],
"typescriptServerPlugins": [
{
"name": "@astrojs/ts-plugin",
"enableForWorkspaceTypeScriptVersions": true
}
]
},
"dependencies": {
"@astrojs/language-server": "2.15.4",
"@astrojs/ts-plugin": "1.10.4",
"prettier": "^3.2.5",
"prettier-plugin-astro": "^0.14.0",
"typescript": "5.3.3"
},
"packageManager": "[email protected]+sha1.4ba7fc5c6e704fce2066ecbfb0b0d8976fe62447"
}