-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 2.05 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
{
"name": "fast-snippets",
"displayName": "FAST Snippets",
"description": "VSCode snippets for commonly used conventions when creating FAST Components.",
"version": "1.6.2",
"license": "MIT",
"author": {
"name": "Nathan Brown",
"url": "https://github.com/kingoftac"
},
"publisher": "kingoftac",
"icon": "fast.png",
"galleryBanner": {
"color": "#292a2f",
"theme": "dark"
},
"homepage": "https://github.com/kingoftac/fast-snippets/main/README.md",
"bugs": {
"url": "https://github.com/kingoftac/fast-snippets/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/kingoftac/fast-snippets"
},
"engines": {
"vscode": "^1.62.0"
},
"categories": [
"Snippets",
"Programming Languages"
],
"main": "dist/main.js",
"activationEvents": [
"onLanguage:typescript",
"onLanguage:javascript"
],
"contributes": {
"configuration": {
"type": "object",
"title": "FAST Snippets",
"properties": {
"fastSnippets.generateImportsFromSymbols": {
"scope": "resource",
"type": "boolean",
"default": true,
"description": "Enables auto inserting import statements from the included snippets."
},
"fastSnippets.quoteStyle": {
"type": "string",
"enum": [
"'",
"\""
],
"default": "'",
"description": "Set your preferred style of quotations."
}
}
}
},
"packageManager": "[email protected]",
"scripts": {
"vscode:prepublish": "yarn esbuild:base --minify",
"esbuild:base": "esbuild ./src/extension.ts --bundle --outfile=dist/main.js --external:vscode --format=cjs --platform=node",
"esbuild": "yarn esbuild:base --sourcemap",
"esbuild:watch": "yarn esbuild:base --sourcemap --watch",
"clean": "node build/clean.js",
"package": "yarn clean && vsce package --no-yarn --out dist/",
"publish": "vsce publish --no-yarn"
},
"devDependencies": {
"@types/node": "^16.11.6",
"@types/vscode": "^1.62.0",
"esbuild": "^0.13.13",
"typescript": "^4.4.4",
"vscode-languageclient": "^7.0.0",
"vscode-languageserver": "^7.0.0",
"vscode-languageserver-textdocument": "^1.0.2"
}
}