-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.31 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
{
"name": "monoeye",
"displayName": "Monoeye",
"description": "High contrast color scheme based on Monokai Pro",
"version": "0.1.6",
"author": "Eyemono Rin",
"publisher": "EyemonoRin",
"repository": {
"type": "git",
"url": "https://github.com/eyemono/monoeye-vscode"
},
"bugs": {
"url": "https://github.com/eyemono/monoeye-vscode/issues"
},
"license": "MIT",
"icon": "assets/marketplace-icon.png",
"engines": {
"vscode": "^1.74.0"
},
"categories": [
"Themes"
],
"contributes": {
"themes": [
{
"label": "Monoeye",
"uiTheme": "vs-dark",
"path": "./themes/Monoeye-color-theme.json"
}
]
},
"scripts": {
"build": "ts-node ./src/index.ts",
"watch": "nodemon",
"test": "jest",
"lint": "eslint --cache --fix \"**/*.{ts,js,json}\" && prettier --write \"**/*.{ts,js,json}\""
},
"devDependencies": {
"@types/jest": "^29.2.6",
"@types/node": "^18.11.18",
"@typescript-eslint/eslint-plugin": "^5.48.2",
"@typescript-eslint/parser": "^5.48.2",
"eslint": "^8.32.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-simple-import-sort": "^9.0.0",
"jest": "^29.3.1",
"nodemon": "^2.0.20",
"prettier": "^2.8.3",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1",
"typescript": "^4.9.4"
}
}