-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
69 lines (69 loc) · 1.37 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
{
"name": "karma",
"displayName": "Karma",
"description": "A colorful VS Code theme",
"version": "3.1.1",
"publisher": "sreetamd",
"author": "Sreetam Das",
"license": "MIT",
"galleryBanner": {
"color": "#0A0E14",
"theme": "dark"
},
"icon": "images/logo.png",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"start": "tsx watch src/index.ts",
"dev": "pnpm run start",
"build": "rimraf ./dist && tsx src/build.ts & tsup src/index.ts --dts",
"prepublishOnly": "npm run build",
"package": "vsce package",
"release": "vsce publish"
},
"repository": {
"url": "https://github.com/sreetamdas/karma.git"
},
"engines": {
"vscode": "^1.41.0"
},
"categories": [
"Themes"
],
"contributes": {
"themes": [
{
"label": "Karma",
"uiTheme": "vs-dark",
"path": "./themes/default.json"
},
{
"label": "Karma Light",
"uiTheme": "vs",
"path": "./themes/light.json"
},
{
"label": "Karma Legacy",
"uiTheme": "vs-dark",
"path": "./themes/Karma-color-theme.json"
}
]
},
"devDependencies": {
"@types/node": "^18.16.1",
"@vscode/vsce": "^2.19.0",
"tsup": "^7.1.0",
"tsx": "^3.12.6",
"typescript": "^5.0.4"
},
"bugs": {
"url": "https://github.com/sreetamdas/karma/issues"
},
"homepage": "https://github.com/sreetamdas/karma#readme",
"keywords": [
"Karma",
"theme",
"dark",
"light"
]
}