-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
111 lines (111 loc) · 2.64 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
103
104
105
106
107
108
109
110
111
{
"name": "vscode-corvid",
"displayName": "Velo",
"description": "The extension to work with velo-filesystem chrome extension. Highlighting .jsw, support jobs.config, autocomplete, snippets",
"version": "4.0.0",
"type": "module",
"publisher": "shoonia",
"scripts": {
"lint": "tsc --noEmit && eslint 'src/**/*.ts'",
"start": "rollup -c -w",
"build": "rollup -c",
"dist": "yarn build && vsce publish -p"
},
"main": "./dist/extension.js",
"icon": "icons/velo.png",
"activationEvents": [
"workspaceContains:velofilesystemrc",
"workspaceContains:**/*.jsw",
"workspaceContains:jobs.config"
],
"contributes": {
"commands": [],
"configuration": [
{
"title": "Velo",
"properties": {
"velo.autocomplete.import": {
"scope": "resource",
"type": "boolean",
"default": true,
"description": "on/off autocomplete for import Wix modules"
},
"velo.autocomplete.jsw": {
"scope": "resource",
"type": "boolean",
"default": true,
"description": "on/off autocomplete for Web Modules"
}
}
}
],
"languages": [
{
"id": "javascript",
"extensions": [
".jsw"
]
},
{
"id": "jsonc",
"extensions": [
"jobs.config"
]
}
],
"snippets": [
{
"language": "javascript",
"path": "./snippets/imports.json"
}
],
"jsonValidation": [
{
"fileMatch": "jobs.config",
"url": "./schema/jobs.config-schema.json"
}
]
},
"categories": [
"Other"
],
"engines": {
"vscode": "^1.76.2"
},
"devDependencies": {
"@babel/core": "^7.21.3",
"@babel/preset-typescript": "^7.21.0",
"@evilmartians/lefthook": "^1.3.8",
"@rollup/plugin-babel": "^6.0.3",
"@rollup/plugin-commonjs": "^24.0.1",
"@rollup/plugin-json": "^6.0.0",
"@types/node": "^18.15.5",
"@types/vscode": "^1.76.0",
"@typescript-eslint/eslint-plugin": "^5.56.0",
"@typescript-eslint/parser": "^5.56.0",
"eslint": "^8.36.0",
"rollup": "^3.20.1",
"typescript": "^5.0.2",
"vsce": "^2.15.0"
},
"repository": {
"type": "git",
"url": "https://github.com/shoonia/vscode-corvid.git"
},
"bugs": {
"url": "https://github.com/shoonia/vscode-corvid/issues"
},
"keywords": [
"wix",
"corvid",
"velo-filesystem",
"wixcode",
"velo"
],
"author": {
"name": "Alexander Zaytsev",
"email": "[email protected]",
"url": "https://twitter.com/_shoonia"
},
"license": "MIT"
}