forked from HerringtonDarkholme/nextjs-theme-switcher
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.34 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
{
"name": "nextjs-theme-switcher",
"displayName": "Next.js Theme Switcher",
"description": "Automatically switch VSCode themes based on Next.js file types",
"version": "1.0.0",
"publisher": "your-publisher-name",
"engines": {
"vscode": "^1.85.0"
},
"categories": [
"Other"
],
"activationEvents": [
"workspaceContains:**/next.config.js"
],
"main": "./out/extension.js",
"contributes": {
"configuration": {
"title": "Next.js Theme Switcher",
"properties": {
"nextjsThemeSwitcher.clientTheme": {
"type": "string",
"default": "Visual Studio Dark",
"description": "VSCode theme to use for client-side files"
},
"nextjsThemeSwitcher.serverTheme": {
"type": "string",
"default": "Default Dark Modern",
"description": "VSCode theme to use for server-side files"
},
"nextjsThemeSwitcher.isomorphicTheme": {
"type": "string",
"default": "Default High Contrast",
"description": "VSCode theme to use for isomorphic/shared files"
}
}
}
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./"
},
"devDependencies": {
"@types/node": "^16.11.6",
"@types/vscode": "^1.85.0",
"typescript": "^4.9.4"
}
}