-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
86 lines (86 loc) · 2.92 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
{
"version": "0.2.11",
"license": "MIT",
"name": "dark-plus-syntax",
"engines": {
"vscode": "^1.63.0"
},
"scripts": {
"start": "npm run build",
"build": "ts-node ./src/main.ts",
"build:prod": "NODE_ENV=production ts-node ./src/main.ts",
"watch": "cross-env nodemon --watch './src/**/*.ts' --exec 'ts-node' ./src/main.ts",
"lint": "eslint ./src/**/*.ts --fix",
"format": "npm run lint",
"publish:latest": "vsce publish",
"publish:next": "vsce publish --pre-release",
"test": "mocha --require ts-node/register --require tsconfig-paths/register ./test/tests/*.test.ts",
"test:cover": "nyc --require ts-node/register --require tsconfig-paths/register mocha ./test/tests/*.test.ts"
},
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^1.0.2",
"@types/chai": "^4.3.0",
"@types/eslint": "^8.4.1",
"@types/mocha": "^9.1.0",
"@types/node": "^17.0.10",
"@typescript-eslint/eslint-plugin": "^5.10.0",
"@typescript-eslint/parser": "^5.10.0",
"chai": "^4.3.6",
"cross-env": "^7.0.3",
"dotenv": "^16.0.0",
"eslint": "^8.7.0",
"eslint-plugin-jsdoc": "^37.6.3",
"mocha": "^9.2.0",
"nodemon": "^2.0.15",
"nyc": "^15.1.0",
"source-map-support": "^0.5.21",
"ts-node": "^10.5.0",
"tsconfig-paths": "^3.12.0",
"tslib": "^2.3.1",
"typescript": "^4.5.5"
},
"repository": {
"type": "git",
"url": "https://github.com/tcd/dark-plus-syntax.git"
},
"publisher": "dunstontc",
"displayName": "dark-plus-syntax",
"description": "VS Code's default dark theme, but just a little bit better.",
"categories": [
"Themes"
],
"icon": "dist/assets/128.png",
"galleryBanner": {
"color": "#569cd6",
"theme": "dark"
},
"contributes": {
"themes": [
{
"label": "dark-plus-syntax",
"uiTheme": "vs-dark",
"path": "./dist/theme/dark-plus-syntax-color-theme.json"
},
{
"label": "light-plus-syntax",
"uiTheme": "vs",
"path": "./dist/theme/light-plus-syntax-color-theme.json"
},
{
"label": "dark-plus-syntax (high contrast)",
"uiTheme": "hc-black",
"path": "./dist/theme/dark-plus-syntax-high-contrast-color-theme.json"
},
{
"label": "light-plus-syntax (high contrast)",
"uiTheme": "vs",
"path": "./dist/theme/light-plus-syntax-high-contrast-color-theme.json"
}
]
},
"__metadata": {
"id": "dd7e0ff7-9eb5-45fe-8b21-00e79b632b7f",
"publisherDisplayName": "dunstontc",
"publisherId": "564ecb85-8c09-42fc-b2da-902737b2e743"
}
}