-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 1.19 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
{
"name": "theme-generator",
"displayName": "Theme generator",
"description": "A theme generator to create dark themes",
"version": "6.2.0",
"publisher": "a5hk",
"author": "a5hk",
"license": "MIT",
"homepage": "https://github.com/a5hk/theme-generator",
"repository": {
"type": "git",
"url": "https://github.com/a5hk/theme-generator"
},
"type": "module",
"scripts": {
"lint": "eslint ./src/** --ext .ts",
"build": "tsc --build",
"clean": "tsc --build --clean",
"format": "prettier --write ./../color-themes/*/vscode/themes/*.json ./../color-themes/*/vscode/package.json ./../color-themes/*/windows-terminal/*.json",
"gen": "npm run lint && npm run clean && npm run build && node ./dist/index.js && npm run format",
"test": "echo \"Error: no test specified\" && exit 1"
},
"devDependencies": {
"@types/chroma-js": "^2.1.3",
"@types/node": "^17.0.0",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.0.0",
"ansi-regex": ">=6.0.1",
"chroma-js": "^2.1.0",
"eslint": "^8.15.0",
"eslint-config-prettier": "^8.0.0",
"prettier": "^2.2.1",
"typescript": "^4.1.3",
"xml-formatter": "^2.4.1"
}
}