This repository has been archived by the owner on Aug 16, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 2.04 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
{
"name": "theme-variables-intellisense",
"displayName": "Theme Variables Intellisense",
"description": "Navigo3 Theme Variables Intellisense",
"version": "0.0.1",
"publisher": "Jakub Hloušek",
"repository": "https://github.com/MeckPetarda/ThemeVariablesIntellisense",
"icon": "img/icon.png",
"engines": {
"vscode": "^1.70.0"
},
"categories": [
"Other"
],
"activationEvents": [
"*"
],
"main": "./dist/extension.js",
"contributes": {
"commands": [
{
"command": "theme-variables-intellisense.changeTheme",
"title": "Theme Object Intellisense: Select color Theme"
},
{
"command": "theme-variables-intellisense.addThemes",
"title": "Theme Object Intellisense: Add color Themes"
}
],
"configuration": {
"title": "Navigo3 Theme Object Intellisense",
"type": "object",
"properties": {
"theme-variables-intellisense.themeObjectPaths": {
"scope": "window",
"type": "array",
"description": "",
"items": {
"type": "object",
"properties": {
"id": {
"type": "string"
},
"path": {
"type": "string"
}
}
}
}
}
}
},
"capabilities": {
"colorProvider": "true"
},
"scripts": {
"vscode:prepublish": "npm run esbuild-base -- --minify",
"esbuild-base": "esbuild ./src/extension.ts --bundle --outfile=dist/extension.js --external:vscode --format=cjs --platform=node",
"esbuild": "npm run esbuild-base -- --sourcemap",
"esbuild-watch": "npm run esbuild-base -- --sourcemap --watch",
"test-compile": "tsc -p ./",
"build": "node ./node_modules/vsce/vsce package --allow-star-activation --out \"theme-variables-intellisense.vsix\""
},
"devDependencies": {
"@types/node": "^8.10.25",
"@types/vscode": "^1.70.0",
"esbuild": "^0.15.1",
"tslint": "^5.16.0",
"typescript": "^3.4.5",
"vsce": "^2.10.0",
"vscode": "^1.1.37"
}
}