-
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.44 KB
/
package.json
File metadata and controls
114 lines (114 loc) · 3.44 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": "phlow",
"displayName": "Phlow",
"description": "Language support for Phlow - Low Code Rust runtime for modular backends",
"version": "0.1.1",
"repository": "https://github.com/phlowdotdev/vscode",
"publisher": "phlow",
"icon": "icons/phlow.png",
"engines": {
"vscode": "^1.102.0"
},
"categories": [
"Programming Languages",
"Snippets",
"Other"
],
"keywords": [
"phlow",
"yaml",
"workflow",
"rust",
"backend",
"low-code"
],
"main": "./extension.js",
"activationEvents": [
"onLanguage:phlow"
],
"contributes": {
"languages": [
{
"id": "phlow",
"aliases": [
"Phlow",
"phlow"
],
"extensions": [
".phlow"
],
"configuration": "./language-configuration.phlow.json",
"icon": {
"light": "./icons/phlow.png",
"dark": "./icons/phlow.png"
}
},
{
"id": "phs",
"aliases": [
"Phlow Script",
"phs"
],
"extensions": [
".phs"
],
"configuration": "./language-configuration.phs.json",
"icon": {
"light": "./icons/phlow.png",
"dark": "./icons/phlow.png"
}
}
],
"grammars": [
{
"language": "phlow",
"scopeName": "source.phlow",
"path": "./syntaxes/phlow.tmLanguage.json"
},
{
"language": "phs",
"scopeName": "source.phs",
"path": "./syntaxes/phs.tmLanguage.json"
}
],
"tokenColors": [],
"configuration": {
"title": "Phlow",
"properties": {
"phlow.stepsRainbow.colors": {
"type": "array",
"items": {
"type": "string"
},
"default": [
"rgba(230,57,70,0.05)",
"rgba(251,133,0,0.05)",
"rgba(255,209,102,0.05)",
"rgba(6,214,160,0.05)",
"rgba(17,138,178,0.05)"
],
"description": "Array of CSS color strings used as translucent background colors for items inside steps blocks. The colors are applied cyclically."
},
"phlow.keys.color": {
"type": "string",
"default": "#ffffff",
"description": "Foreground color used for all keys (e.g. id:, payload:, action:). Use any CSS color string."
}
}
}
},
"scripts": {
"lint": "eslint src",
"test": "vscode-test",
"package": "vsce package",
"test-grammar": "node ./test/grammar.test.js",
"test-key": "node test/key_value.test.js",
"test-brace": "node test/brace_block.test.js",
"test-key-dash": "node test/key_dash.test.js"
},
"license": "MIT",
"devDependencies": {
"vscode-textmate": "9.2.1",
"onigasm": "^2.2.1"
}
}