forked from typed-ember/glint
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
114 lines (114 loc) · 3.2 KB
/
Copy pathpackage.json
File metadata and controls
114 lines (114 loc) · 3.2 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
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
{
"name": "glint-vscode",
"displayName": "Glint",
"description": "Glint language server integration for VS Code",
"version": "1.1.0",
"publisher": "typed-ember",
"private": true,
"author": "James C. Davis (https://github.com/jamescdavis)",
"license": "MIT",
"type": "commonjs",
"main": "dist/extension.js",
"homepage": "https://github.com/typed-ember/glint/packages/vscode",
"repository": {
"url": "https://github.com/typed-ember/glint"
},
"keywords": [
"ember",
"glimmer",
"handlebars",
"typescript"
],
"categories": [
"Programming Languages",
"Linters"
],
"scripts": {
"pretest": "yarn build",
"test": "node lib/__tests__/support/launch-from-cli.mjs",
"build": "yarn compile && yarn bundle",
"compile": "tsc --build",
"bundle": "esbuild lib/src/extension.js --bundle --outfile=dist/extension.js --platform=node --external:vscode --minify",
"vscode:prepublish": "yarn build",
"extension:package": "vsce package --no-dependencies",
"extension:publish": "vsce publish --no-dependencies"
},
"engines": {
"vscode": "^1.68.1"
},
"activationEvents": [
"workspaceContains:**/tsconfig.json",
"workspaceContains:**/jsconfig.json"
],
"contributes": {
"commands": [
{
"title": "Glint: Restart Glint Server",
"command": "glint.restart-language-server"
},
{
"title": "Glint: Show IR for Debugging",
"command": "glint.show-debug-ir",
"enablement": "config.glint.debug == true"
}
],
"configuration": [
{
"title": "Glint",
"properties": {
"glint.libraryPath": {
"markdownDescription": "The path, relative to your workspace folder root, from which to resolve `@glint/core`. Defaults to `'.'`.",
"order": 1,
"type": "string"
},
"glint.debug": {
"description": "Enable debugging commands for Glint.",
"type": "boolean",
"default": false
},
"glint.trace.server": {
"description": "Traces communication between VS Code and the Glint language server.",
"type": "string",
"default": "off",
"enum": [
"off",
"messages",
"verbose"
]
}
}
}
]
},
"icon": "assets/glint.png",
"galleryBanner": {
"color": "#1E293B",
"theme": "dark"
},
"dependencies": {
"vscode-languageclient": "^8.0.1"
},
"devDependencies:notes": {
"@vscode/test-electron": "Dropped support for Node < 16 in the 2.2.1 patch release, so locking to 2.2.0 while we still support Node 14."
},
"devDependencies": {
"@glint/core": "^1.1.0",
"@types/mocha": "^10.0.1",
"@types/vscode": "^1.68.1",
"@vscode/test-electron": "2.2.0",
"@vscode/vsce": "^2.19.0",
"esbuild": "^0.15.16",
"expect": "^29.5.0",
"mocha": "^10.2.0",
"glob": "^10.2.4"
},
"volta": {
"extends": "../../package.json"
},
"__metadata": {
"id": "f1370239-cb1d-475c-b9da-20961224a998",
"publisherDisplayName": "typed-ember",
"publisherId": "b79e9b30-918d-42b5-9460-27287aca13c4",
"isPreReleaseVersion": false
}
}