-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
73 lines (73 loc) · 2 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": "city-lights-icon-vsc",
"displayName": "City Lights Icon package",
"description": "The City Lights icon pack is a gorgeous set of icons which you can toggle by color or grayscale to enhance your focus",
"categories": [
"Themes"
],
"license": "CC BY-NC-ND 4.0",
"version": "1.1.5",
"publisher": "Yummygum",
"repository": "https://github.com/Yummygum/city-lights-icons-vsc",
"engines": {
"vscode": "^1.5.0"
},
"icon": "icon.png",
"activationEvents": [
"*"
],
"main": "./out/src/extension",
"contributes": {
"iconThemes": [
{
"id": "city-lights-icons-vsc",
"label": "City Lights Icon Theme (Visual Studio Code) - Black & White",
"path": "./icons/city-lights-icon-theme.json"
},
{
"id": "city-lights-icons-vsc-light",
"label": "City Lights Icon Theme (Visual Studio Code) - Colors",
"path": "./icons/city-lights-icon-theme-light.json"
}
],
"commands": [
{
"command": "city-lights-icons-vsc.hidesExplorerArrows",
"title": "City Lights Icons: Toggle Folder Arrows"
}
],
"configuration": {
"title": "%displayName%",
"properties": {
"city-lights-icons-vsc.hidesExplorerArrows": {
"type": "boolean",
"default": false,
"description": "%configuration.hidesExplorerArrows%",
"scope": "window"
}
}
}
},
"scripts": {
"vscode:prepublish": "npm run build",
"prebuild": "npm run lint && npm run clean",
"build": "npm run compile",
"compile": "tsc -p ./",
"clean": "rimraf ./out",
"postinstall": "node ./node_modules/vscode/bin/install",
"lint": "tslint -c tslint.json ./src/**/*.ts"
},
"devDependencies": {
"@types/node": "^10.7.1",
"rimraf": "^2.6.2",
"ts-node": "^7.0.1",
"tslint": "^5.11.0",
"typescript": "^3.0.1",
"vscode": "^1.1.21"
},
"dependencies": {
"bluebird": "^3.5.1",
"lodash.merge": "^4.6.2",
"semver": "^5.5.1"
}
}