-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathpackage.json
93 lines (93 loc) · 1.88 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
{
"name": "wal-theme",
"displayName": "Wal Theme",
"description": "A theme generated with pywal color palette",
"publisher": "dlasagno",
"author": "Daniele Lasagno",
"license": "MIT",
"version": "1.2.0",
"repository": {
"type": "git",
"url": "https://github.com/dlasagno/vscode-wal-theme"
},
"bugs": {
"url": "https://github.com/dlasagno/vscode-wal-theme/issues"
},
"homepage": "https://github.com/dlasagno/vscode-wal-theme#readme",
"engines": {
"vscode": "^1.34.0"
},
"extensionKind": [
"ui",
"workspace"
],
"categories": [
"Themes"
],
"keywords": [
"theme",
"pywal",
"wal"
],
"icon": "icon.png",
"activationEvents": [
"*",
"onCommand:walTheme.update"
],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "walTheme.update",
"title": "Update",
"category": "Wal Theme"
}
],
"configuration": {
"title": "Wal Theme",
"properties": {
"walTheme.autoUpdate": {
"type": "boolean",
"default": true,
"description": "Update automatically the theme when the pywal color palette changes"
}
}
},
"themes": [
{
"label": "Wal",
"uiTheme": "vs-dark",
"path": "./themes/wal.json",
"_watch": true
},
{
"label": "Wal Bordered",
"uiTheme": "vs-dark",
"path": "./themes/wal-bordered.json",
"_watch": true
}
]
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"pretest": "npm run compile",
"lint": "eslint src --ext ts"
},
"devDependencies": {
"@types/color": "^3.0.2",
"@types/glob": "^7.1.4",
"@types/node": "^13.13.52",
"@types/vscode": "^1.34.0",
"@typescript-eslint/eslint-plugin": "^4.28.3",
"@typescript-eslint/parser": "^4.28.3",
"eslint": "^7.30.0",
"glob": "^7.1.7",
"typescript": "^3.9.10"
},
"dependencies": {
"chokidar": "^3.5.2",
"color": "^3.1.3"
}
}