-
-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
102 lines (102 loc) · 2.79 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
{
"name": "language-stylus",
"displayName": "stylus",
"description": "stylus language support",
"version": "1.16.0",
"publisher": "sysoev",
"engines": {
"vscode": "^1.59.0"
},
"license": "MIT",
"sponsor": {
"url": "https://opencollective.com/stylus"
},
"author": {
"name": "Stanislav Sysoev",
"email": "d4rkr00t@gmail.com"
},
"maintainers": [
{
"name": "Lei Chen",
"email": "chenleicoder@gmail.com"
}
],
"homepage": "https://github.com/d4rkr00t/language-stylus",
"repository": {
"type": "git",
"url": "https://github.com/d4rkr00t/language-stylus.git"
},
"bugs": "https://github.com/d4rkr00t/language-stylus/issues",
"main": "./out/src/extension",
"icon": "assets/icon.png",
"keywords": [
"styl",
"stylus",
"language-stylus",
"vscode-stylus",
"stylus-intellisense"
],
"activationEvents": [
"onLanguage:stylus"
],
"categories": [
"Programming Languages"
],
"contributes": {
"languages": [
{
"id": "stylus",
"aliases": [
"Stylus",
"stylus"
],
"extensions": [
".styl",
".stylus"
],
"configuration": "./stylus.configuration.json"
}
],
"grammars": [
{
"language": "stylus",
"scopeName": "source.stylus",
"path": "./syntaxes/stylus.json"
}
],
"configuration": {
"type": "object",
"title": "Language Stylus Configuration",
"properties": {
"languageStylus.useSeparator": {
"type": "boolean",
"default": true,
"description": "Separate property from value with ':'."
},
"languageStylus.useBuiltinFunctions": {
"type": "boolean",
"default": true,
"description": "Toggle matches for Stylus Builtin Functions on autocomplete."
}
}
}
},
"scripts": {
"build": "npx vsce package",
"vscode:prepublish": "tsc -p ./",
"compile": "tsc -watch -p ./",
"patch": "vsce publish patch",
"minor": "vsce publish minor",
"major": "vsce publish major"
},
"devDependencies": {
"@types/node": "^16.4.13",
"@types/vscode": "^1.59.0",
"typescript": "^4.7.4",
"vsce": "^2.9.2"
},
"dependencies": {
"stylus": "^0.58.1",
"vscode-css-languageservice": "^6.0.1"
}
}