-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.38 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
{
"name": "sprinkles-vscode",
"displayName": "Sprinkles Theme",
"description": "A sprinkled syntax theme with vibrant pops of colors 🍩",
"repository": {
"type": "git",
"url": "https://github.com/carloscuesta/sprinkles-vscode"
},
"version": "2.7.0",
"publisher": "carloscuesta",
"engines": {
"vscode": "^1.66.0"
},
"categories": [
"Themes"
],
"galleryBanner": {
"color": "#161719",
"theme": "dark"
},
"icon": "images/icon.png",
"files": [
"themes"
],
"contributes": {
"themes": [
{
"label": "Sprinkles Dark",
"uiTheme": "vs-dark",
"path": "./themes/sprinkles-dark.json"
},
{
"label": "Sprinkles Light",
"uiTheme": "vs",
"path": "./themes/sprinkles-light.json"
}
]
},
"devDependencies": {
"@types/lodash.startcase": "4.4.9",
"husky": "^9.1.7",
"lint-staged": "^15.2.10",
"lodash.startcase": "4.4.0",
"nodemon": "3.1.7",
"prettier": "^3.4.1",
"ts-node": "10.9.2",
"vsce": "^2.15.0"
},
"scripts": {
"build": "ts-node ./src/index.ts",
"dev": "nodemon --watch src/**",
"prepare": "husky install",
"lint": "prettier --check .",
"publish:vsce": "vsce publish"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
},
"sponsor": {
"url": "https://github.com/sponsors/carloscuesta"
}
}