forked from ton-community/vscode-func
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
124 lines (124 loc) · 3.55 KB
/
Copy pathpackage.json
File metadata and controls
124 lines (124 loc) · 3.55 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
115
116
117
118
119
120
121
122
123
124
{
"name": "func-vscode",
"displayName": "FunC Language Support",
"description": "This extension enables support for FunC in VS Code.",
"icon": "logo.png",
"version": "1.1.6",
"engines": {
"vscode": "^1.63.0"
},
"activationEvents": [
"onLanguage:func"
],
"categories": [
"Programming Languages",
"Snippets"
],
"repository": {
"type": "git",
"url": "https://github.com/tonwhales/vscode-func"
},
"author": {
"name": "Danila Volkov (dvlkv)",
"email": "danila@whalescorp.com",
"url": "https://github.com/dvlkv"
},
"publisher": "tonwhales",
"scripts": {
"vscode:prepublish": "yarn compile",
"compile": "webpack",
"grammar:compile": "yarn workspace func-language build && cp grammar/func/tree-sitter-func.wasm server/tree-sitter-func.wasm",
"watch": "webpack --watch",
"release": "release-it",
"lint": "eslint ./client/src ./server/src --ext .ts,.tsx"
},
"workspaces": [
"./grammar/func",
"./server",
"./client"
],
"main": "./dist/client",
"contributes": {
"languages": [
{
"id": "func",
"aliases": [
"FunC",
"func"
],
"extensions": [
".fc",
".func"
],
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "func",
"scopeName": "source.func",
"path": "./syntaxes/.tmLanguage.json"
}
],
"snippets": [
{
"language": "func",
"path": "./snippets/snippets.json"
}
],
"configuration": {
"title": "FunC",
"type": "object",
"properties": {
"func.symbolDiscovery": {
"description": "Set up how extension discovers symbols.",
"type": "string",
"enum": [
"everything",
"only #include"
],
"default": "only #include"
},
"func.autocompleteAddParentheses": {
"description": "Add parentheses to autocomplete function suggestions.",
"type": "boolean",
"default": true
},
"func.experimentalDiagnostics": {
"description": "Enable experimental diagnostics.",
"type": "boolean",
"default": false
}
}
}
},
"devDependencies": {
"@release-it/keep-a-changelog": "^3.1.0",
"copy-webpack-plugin": "^11.0.0",
"path-browserify": "^1.0.1",
"release-it": "^15.6.0",
"tree-sitter-cli": "^0.20.8",
"ts-loader": "^9.3.1",
"typescript": "^4.7.4",
"vscode": "^1.1.37",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0"
},
"release-it": {
"git": {
"commitMessage": "chore: release v${version}"
},
"github": {
"release": true
},
"npm": {
"publish": false
},
"plugins": {
"@release-it/keep-a-changelog": {
"filename": "CHANGELOG.md"
}
}
},
"packageManager": "yarn@3.4.1"
}